function fullWin(myURL, type)
{
	var t;
	t = type;
	if (t==2) {
		window.open(myURL,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=450,height=450,left=80,top=180");
	} 
	if (t==1) {
		window.open(myURL,"","toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,favorites=1,resizable=1, top=10,left=10,copyhistory=1,width=850,height=750");
	}
	if (t==7) {
		window.open(myURL,"","toolbar=0, location=0, directories=0,status=0,menubar=0, scrollbars=1,resizable=1, top=10,left=10,copyhistory=1,width=850,height=450");
	}
	if (t==0) {
		window.location=myURL;
	}
}


