/**
Call for the refund and delivery scripts 
**/
function refundpolicy(){
	var leftVal;
	var topVal;
	leftVal = (screen.width - 530) / 2;
	topVal = (screen.height - 637) / 2;
	
 	newwin=window.open('refundpolicy.asp','RefundandExchange','menubar=no, scrollbars=yes, directories=no,resizable=yes,status=no,toolbar=no, width=530, height=637, left='+leftVal+', top='+topVal);

}
function deliverydetails(){
	var leftVal;
	var topVal;
	leftVal = (screen.width - 530) / 2;
	topVal = (screen.height - 637) / 2;
 	newwin=window.open("deliveryinfo.asp","DeliveryInfo","menubar=no, scrollbars=yes, width=530, height=637, directories=no,location=no,resizable=yes,status=no,toolbar=no, left="+leftVal+", top="+topVal);
}
