function viewUserDetails(userId) {        
    var URL = "/viewUserNoTemplate.html?userId=" + userId;
    window.open(
	    URL, 
	    "",
	    "width=640, height=480, location=no, scrollbars=yes, menubar=no, resizable=yes, status=no, toolbar=no"
     );
}
function viewLicenceDetails(licenceId) {        
    var URL = "/viewLicenceNoTemplate.html?licenceId=" + licenceId;
    window.open(
	    URL, 
	    "",
	    "width=640, height=480, location=no, scrollbars=yes, menubar=no, resizable=yes, status=no, toolbar=no"
     );
}
function openGeneralPage(contents){
    myWindow=window.open(
			'',
			'',
			'width=800,height=600, scrollbars=yes, menubar=yes, resizable=yes, status=no, toolbar=yes');
    myWindow.document.write(contents);
    myWindow.focus();    
}
function openPrimaryContentsAsPage(){
    var contents = "<html><head>";
    contents += "<title>Waterfind Environment Fund Inc</title>"
    contents += "<meta http-equiv=\"content-type\" content=\"text/html; charset=windows-1250\" />";    
    //contents += "<link type=\"text/css\" rel=\"stylesheet\" href=\"/style/form.css\">";
    //contents += "<link type=\"text/css\" rel=\"stylesheet\" href=\"/style/data.css\">";
    contents += "<meta http-equiv=\"expires\" content=\"-1\" />";
    contents += "<meta http-equiv=\"pragma\" content=\"no-cache\" />";
    contents += "<meta name=\"robots\" content=\"all\" />";
    contents += "</head><body>";
    contents += document.getElementById('primarycontent').innerHTML;
    contents += "</body></html>";
    openGeneralPage(contents);
}
