/*
var message="Sorry, right-click has been disabled"; 
function clickIE() {if (document.all) {(message);return false;}} 
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {(message);return false;}}} 
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} 
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} 
document.oncontextmenu=new Function("return false") 
*/

function FullscreenLoad(){
     if (window.screen){
        var hori=screen.availWidth;
        var verti=screen.availHeight;
        window.open('login.php?n=','newWin', 'width='+hori+',height='+verti+',fullscreen=1, scrollbars=1,left='+(0)+',top='+(0));
     }
}


function confirmDelete() {
    if (confirm("Are you sure you want to proceed\nAll related data will be PERMANENTLY Deleted?")) {
       return true;
    }
    else {
       return false;
    }
}


function confirmClose() {
    if (confirm("Make sure you SAVE before you exit\nAll unsaved data will be lost")) {
       window.close();
       return true;
    }
}


function popUp(fileName){
      window.open(fileName,'','width=360,height=350,left=400,top=0,scrollbars=1,menubars=0');
}

function previewPhoto(imageName){
//      window.open(fileName,'','width=140,height=350,left=0,top=0,scrollbars=1,menubars=0');
    window.open(imageName,'','width=750,height=520,left=0,top=0,scrollbars=1,menubars=0');

	//myWindow = window.open("","Maw2af.org","width=500,height=200,scrollbars=0,resizable=yes,left=1,top=1");
	//myWindow.document.write("<html><head><title>Maw2af.org - Photos</title></head><body bgcolor=\"#000000\">");
	//myWindow.document.write("<div align=\"center\"><table border=\"0\" cellspacing=\"2\">")
	//myWindow.document.write("<tr><td align=\"center\">");
	//myWindow.document.write("<img src="+imageName+" name=\"photo_preview\" width=\"100%\" height=\"100%\" border=\"0\"></td></tr>");
	//myWindow.document.write("<tr><td align=\"center\"><a href=\"javascript:onClick=window.close()\";>")
	//myWindow.document.write("<span style=\"color: #ededeb;font-size: 8pt;font-family: verdana,arial,helvetica;text-decoration: none;\">[close]</a></span></td></tr></table></div></body></html>");

	//iWidth = myWindow.document.images['photo_preview'].width + 50;
	//iHeight = myWindow.document.images['photo_preview'].height + 110;
	//myWindow.resizeTo(iWidth, iHeight);
	//myWindow.focus();
}	  			


// toggle view 
function toggleDiv(divId) {
	var divSec = document.getElementById(divId);
	
	if ( (divSec.style.display == 'inline') && (divSec.style.visibility == 'visible') ) {
		divSec.style.display = 'none';
		divSec.style.visibility = 'hidden';
	}
	else {
		divSec.style.display = 'inline';
		divSec.style.visibility = 'visible';
	}
}

function confirmReset() {
    if (confirm("Are you sure you want to proceed\nContent will be PERMANENTLY reset?")) {
       return true;
    }
    else {
       return false;
    }
}

