// Copyright SimplytheBest.net 2001-2004 http://simplythebest.net.
// This script may only be used with the copyright notices intact on non commercial sites.
// For use on commercial web sites please go to: http://simplythebestscripts.com/popup_window_script.html.

function ShowMenu(URL, WinTitle, WinWidth, WinHeight, WinLeft, WinTop){
	attr = "resizable=no,width=" + WinWidth + ",height=" + WinHeight + ",screenX=" + WinLeft + ",screenY=" + WinTop + ",left=" + WinLeft + ",top=" + WinTop + "";
	msgWindow=open(URL, WinTitle, attr);
	if (msgWindow.opener == null) msgWindow.opener = self;
}