// JavaScript Document

var newwindow;

function popit(url)
{
	newwindow=window.open(url,'name','height=400,width=550,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
}


function popit2(url)
{
	newwindow=window.open(url,'name','height=400,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
}


function popit3(url)
{
	newwindow=window.open(url,'name','height=400,width=740,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=no');
}


function popit4(url)
{
	newwindow=window.open(url,'name','height=420,width=770,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
}
