function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,location=no,scrollbars=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 440,top = 362');");
}

function popUp2(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,location=no,scrollbars=0,statusbar=0,menubar=0,resizable=0,width=450,height=258,left = 440,top = 362');");
}

function under_cons()
{
	window.alert("Comming soon!");
}

function finished()
{
	window.alert("Your Request has been saved!");
}

function closew()
{
	window.close();
}    

function gotoUrl(url) {
  if (url == "")
    return;
  location.href = url;
}

function newWin(url) {
  // url of this function should have the format: "target,URL".
  if (url == "")
    return;
  window.open(url.substring(url.indexOf(",") + 1, url.length), 
	url.substring(0, url.indexOf(",")));
}