function LoadPage(Name, XYZ, ClipName)
{
	// This could be changed to pass in the server variable PATH_INFO and passed along in URL
	var URL
	URL = "../linkbuilder/default.asp?XYZ=" + escape(XYZ) + "&LinkName=" + escape(ClipName)
	objWindow = window.open(URL,Name,"titlebar=no,left=50,top=50,width=420,height=400,menubar=no,scrollbars=yes,resizable=yes");
}

function opennewWindow(Name, file)
{
	if (Name == "Help") {
		objWindow = window.open(file,Name,"titlebar=no,left=50,top=50,width=500,height=450,menubar=no,scrollbars=yes,resizable=yes");
	}
	else {
		objWindow = window.open(file,Name,"titlebar=no,left=50,top=50,width=500,height=450,menubar=no");
	}
}
