function OpenURL (URL) 
{ 
    window.open (URL, "");
}

function OpenURLPopup (URL,width,height) 
{ 
    window.open (URL, "", "toolbar=0,menubar=0,status=0,resizeable,width=" + width + ",height=" + height);
}
