function loadPayment(url)
{
	try
	{
		var id = 'Payment'+ Math.floor(Math.random()*1000000000);
		var width  = 950;
		var height = 600;
		var left   = (screen.width  - width)/2;
		var top    = (screen.height - height)/2;
		var params = 'width='+width+', height='+height;
		params += ', top='+top+', left='+left;
		params += ', directories=no';
		params += ', location=no';
		params += ', menubar=no';
		params += ', resizable=yes';
		params += ', scrollbars=yes';
		params += ', status=no';
		params += ', toolbar=no';

		// tb_show('', url +'?TB_iframe=true&height='+ height +'&width='+ width, 'payment');
		window.open(url,id,params);
		return false;
	}
	catch(e) 
	{
		return true;
	}
}

