// JavaScript Document

function openPgWindow (url) 
{
	var width = screen.width;
	var height = screen.height;
	var features = "width=" + width + ",height=" + height + ",scrollbars,resizable";

	
	newWindow = window.open(url,'win',features);
	newWindow.focus();


}


function LZ(x) { return (x>=10||x<0?"":"0") + x }
function LZZ(x) { return x<0||x>=100?""+x:"0"+LZ(x) }

var randomnumber=Math.floor(Math.random()*9) + 1;

var rn = LZZ(randomnumber);





