var range = 5;
var rand = Math.floor(Math.random() * range) + 1;

function printData(page){
	var sProperties = "";
	sProperties += "scrollbars=1,resizable,";
	sProperties += "width=600,";
	sProperties += "height=400,";
	sProperties += "status=0,";
	sProperties += "menubar=1,";
	sProperties += "location=0,";
	sProperties += "toolbar=1,";

SendWindow = window.open(page,"SendWindow",sProperties);
SendWindow.focus(); 
}

