var newwindow;
function openwin(url)
{
	newwindow=window.open(url,'name','left=0,top=0,resizable=1,scrollbars=1,toolbar=1,status=1,location=1,menubar=1,height=600,width=600');
	if (window.focus) {newwindow.focus()}
}

function detwin(url)
{
	newwindow=window.open(url,'name','left=0,top=0,resizable=1,scrollbars=1,toolbar=0,status=0,location=0,menubar=0,height=500,width=525');
	if (window.focus) {newwindow.focus()}
}

