function openNewWindow(url,name) {
		newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=640,height=480');
	}
	
function test()
{
	alert('general.js');	
}

function openNewWindowSmall(url,name) {
		newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=320,height=240');
	}
	
function openWindowMed(url,name)
{
		newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=490,height=380');
		
}

function openWindowLarge(url,name)
{
		newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600');
		
}



function openWindowCust_NoScroll(url,name,h,w)
{
	newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h );
}

function openWindowCust_resize(url,name,h,w)
{
	newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + w + ',height=' + h );
}

function openNewWindowScroll(url,name) {
		var x=window;
		x.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=640,height=480');
	}
	
	function openWindowCust_resize(url,name,h,w)
{
	newWindow = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + w + ',height=' + h );
}