// Sets the default page status
defaultStatus="Stonetek"

// Standard print code
function printIt(){  
	if (window.print) {
		window.print() ;  
	}else{
		var browsername = '<OBJECT ID="browsername1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
		document.body.insertAdjacentHTML('beforeEnd', browsername);
		browsername1.ExecWB(6, 2);
	}
}

// Open Popup
function popupURL(URL,name,width,height, scrollWin){
	var winLeft = (screen.width - width) / 2;
	var winUp = (screen.height - height) / 2;
	win = window.open(URL,name, 'toolbar=no, resizable=yes, scrollbars='+scrollWin+', width='+width+', height='+height+',left='+winLeft+',top='+winUp);
}

function get_random(totalNo)
{
	if (Math.random && Math.round)
	{
	var randNum= Math.round(Math.random()*(totalNo-1));
	randNum+=1;
	return randNum;
	}else{
	today= new Date();
	hours= today.getHours();
	mins=   today.getMinutes();
	secn=  today.getSeconds();
	if (hours==19)
	hours=18;
	var randNum= (((hours+1)*(mins+1)*secn)%totalNo)+1;
	return randNum;
	}
}


function randomImage()
{
	if (document.images){
	var selectedImg= get_random(5);  
	selectedImg--;

	var imageNo= new Array(5) 

	imageNo[0]="img/mainimg_home_t6.jpg";  
	imageNo[1]="img/mainimg_home_t2.jpg";  
	imageNo[2]="img/mainimg_home_t3.jpg";  
	imageNo[3]="img/mainimg_home_t4.jpg";  
	imageNo[4]="img/mainimg_home_t5.jpg";  
	document.write("<IMG SRC='"+imageNo[selectedImg]+"' width='527' height='329' alt='Stunning granite worktops' border='0'>");
 }
}
