function popup(url)
{
	newwindow=window.open(url,'name','height=370,width=660,resizable=0,status=0,toolbar=0');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupfull(url)
{
	newwindow=window.open(url,'namefull','height=400,width=640,resizable=1,status=1,toolbar=1,menubar=1,scrollbars=1,location=1');
	if (window.focus) {newwindow.focus()}
	return false;	
}