/* author: Josef */
/* Creation date: 07/07/03 */

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}

var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}
/*function mp(e){
	if(document.all){
		if((event.button==2)||(event.button==3)){
		alert('Test of Protected page. Sorry :)'); return false}}
		if(document.layers){if(e.which==3){alert('Test of Protected page. Sorry :)'); return false}}}
		if (document.layers) {
		document.captureEvents(event.mousedown)}document.onmousedown=mp;   */
document.onselectstart=new Function("return false");document.ondragstart=new Function("return false");
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
 }
function close_window() {
    window.close();
}
// End hiding script -->