function change(check,callingField) 
{
location.href=check.theme.options[check.theme.selectedIndex].value 
}

function changeTheme(check,callingField) 
{
location.href=check.theme.options[check.theme.selectedIndex].value 
}

function printIt()
{
	window.print();
}	

var win2=null;
function createPop(mypage,myname,w,h,myscroll,mytoolbar)
{
myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=" + myscroll + ",toolbar=" + mytoolbar + ",resizable=yes ";
win2=window.open(mypage,myname,settings);
win2.focus();
}