function planpopup(imgname,title){
var w=window.open('','fp','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1',true);
w.document.write('<html><head><title>' + title + '</title></head><body><img src="' + imgname + '"><p><center><input type="button" value=" Close Window " onclick="window.close()"></center></body></html>');
w.document.close();
w.focus();
}
function disable(e){return false}
function enable(){return true}
function clickIE(){if (event.button==2) return false;}
function clickNS(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3) return false;}}
document.onselectstart=disable
document.oncontextmenu=disable
if (window.sidebar){document.onmousedown=disable;document.onclick=enable}
if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else if (document.all&&!document.getElementById){document.onmousedown=clickIE;}


