<!--

function refresh()
{
location.reload()
}






function check_auth(news_no)
{
//self.name = "Parent_Window";
//window.open("./news/newslogin.php","memberlogin","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no, copyhistory=no, width=800, height=600")

// Name the Window, so the remote can target it
self.name = "Parent_Window";
location.reload()
var new_window = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes,resizable=no, copyhistory=no, width=800,height=600";

new_window.title="AH";
OpenWindow = window.open("news/check_auth.php?news_no="+news_no, "remote", new_window);


}



function member_login()
{
window.open("./members/members.php","memberlogin","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no, copyhistory=no, width=800, height=600")

}

//Refer people popup
function refer()
{
window.open("./refer/refer-pre.php","referpre_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no,resizable=no, copyhistory=no, width=300, height=300")

}

//Disable right mouse click Script 

var message="(c) 2003 Armadale House PTY. LTD."; 

/////////////////////////////////// 
function clickIE4(){ 
if (event.button==2){ 
alert(message); 
return false; 
} 
} 

function clickNS4(e){ 
if (document.layers||document.getElementById&&!document.all){ 
if (e.which==2||e.which==3){ 
alert(message); 
return false; 
} 
} 
} 

if (document.layers){ 
document.captureEvents(Event.MOUSEDOWN); 
document.onmousedown=clickNS4; 
} 
else if (document.all&&!document.getElementById){ 
document.onmousedown=clickIE4; 
} 

document.oncontextmenu=new Function("alert(message);return false") 

// --> 
