//Pop up Window Generation starts
	function MakePop(url,width,height) {
		x = (width)/2, y = (height)/2;
		if (screen) {
			y = (screen.availHeight - height)/2;
			x = (screen.availWidth - width)/2;
		}
		window.open(url,'newWin', 'scrollbars=yes, width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
	}
//Pop up Window Generation ends
