<!--
// original variable changed from 'copyright' because datetime2.js uses var 'Stamp'
Stamp=new Date();
update=Stamp.getFullYear();

function myVoid() { ; } // create a void function

//Hide status bar msg script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

//configure status message to show
var statusmsg=""

function goBack(){
history.go(-1)
}

function exit(){
input_box=confirm("Click OK to close browser window or Cancel");
if (input_box==true){

// Output when OK is clicked
if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
parent.window.close();
NewWindow('http://www.aapress.com.au/101online/exit.html','mywin','530','375','no','center');
}
else{
parent.window.close();
}
}
}

function goForward(){
history.go(1)
}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){
LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){
LeftPosition=(screen.width)?(screen.width-w-32):100;
TopPosition="29";}

settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

win=window.open(mypage,myname,settings);
}

//-->
