// JavaScript Document
function openpopup(money){
	var src="http://www.robingupta.co.uk/popup.php?money="+money;
	//window.open(src,'welcome','width=400,height=400,toolbar=no');
	var w=800;
	var h=400;
	var left = (screen.width/2)-(w/2);
    var top = (screen.height/2)-(h/2);
    var targetWin = window.open (src, 'welcom','toolbar=no, location=no,directories=yes, status=no, menubar=yes, scrollbars=yes, resizable=yes, width='+w+', height='+h+', top='+top+',left='+left);	
}
