function SForm(){
	A = document.winnum.Furl.value;
	B = document.winnum.Fname.value;
	C = document.winnum.Fwidth.value;
	D = document.winnum.Fheight.value;
	E = document.winnum.Ftoolbar[0].checked;
	F = document.winnum.Flocation[0].checked;
	G = document.winnum.Fstatus[0].checked;
	H = document.winnum.Fscroll[0].checked;
	I = document.winnum.Fmenu[0].checked;
	J = document.winnum.Fresize[0].checked;
	SWindow(A,B,C,D,E,F,G,H,I,J);
}

function SWindow(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize){
	Astr = "width=" + Awidth;
	Astr+= ",height=" + Aheight;
	if(Atoolbar)Astr+= ",toolbar";
	if(Alocation)Astr+= ",location";
	if(Astatus)Astr+= ",status";
	if(Ascroll)Astr+= ",scrollbars";
	if(Amenu)Astr+= ",menubar";
	if(Aresize)Astr+= ",resizable";
	window.open(Aurl,Aname,Astr);
}
