window.onload = function() 
{
	Redirect();
}

var cnt = 25;
function Redirect()
{                        
	if (cnt > 0){
		document.getElementById("cntDisp").innerHTML = 
		"  &nbsp; &nbsp; You will be forwarded in: " + cnt + " seconds ...";                
		cnt = cnt - 1;
		setTimeout("Redirect()", 1000);
	}
	else {
		document.getElementById("cntDisp").innerHTML =
		"  &nbsp; &nbsp; redirecting...";
		window.open("http://relianceit.com.au/", "_self");
	}
}        

function launch(ID) {

var setheight=(screen.height)-80
var setwidth=(screen.width)-10

	void(window.open('' +ID+ '', 'CMS','height='+setheight+', width='+setwidth+', resizable=yes, status=no, scrollbars=yes, left=0, top=0'));

	//window.location.href="exit.asp";

}
