function Show_Window(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);
	
	}