//popup window script
var newwindow;
function pop(url)
{
	newwindow=window.open(url,'name','height=220,width=500,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

function pop2(url)
{
	newwindow=window.open(url,'name','height=600,width=600,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}
