//All javascript goes here

//Function to open new window
function openIT(u,W,H, sc) {
		var x = (screen.width - W) / 2;
		var y = (screen.height - H) / 2;
		//window.moveBy(left, top);
		window.open(u, '',"width="+W+",height="+H+",scrollbars="+(sc ? "yes" : "no")+", left="+x+",top="+y);
}

//Function for printer friendly page
function printerFriendly(clr,bgclr,brdr,bgimg) {
	for(i=0;i<document.getElementsByTagName("*").length;i++) {
		if(clr)document.getElementsByTagName("*")[i].style.color="#000000";
		if(bgclr)document.getElementsByTagName("*")[i].style.backgroundColor = "#FFFFFF";
		if(brdr)document.getElementsByTagName("*")[i].style.borderStyle="none";
		if(bgimg)document.getElementsByTagName("*")[i].style.backgroundImage = "url('null')";
	}
}