function ShowPictureInPopupWindow(PictureFile)
{

self.name="main";

var windowimage="toolbar=0,left=200,top=50, directories=0,status=0,"+
"menubar=0,scrollbars=0,resizable=0,width=375,height=475";

var openNewwindow = window.open("","Image",windowimage);
openNewwindow.document.writeln('<table border="0" cellspacing="0" cellpadding="0" height="100%" width="100%">');
openNewwindow.document.writeln('<tr><td valign="middle" align="center">');
openNewwindow.document.writeln('<img src="/images/' + PictureFile +'" border="1">');
openNewwindow.document.writeln('</td></tr>');
openNewwindow.document.writeln('</table>');
openNewwindow.document.close();
}


function BuyItem(ItemId,CurrencyName,ItemPrice)
	{
		var FormName = "Form_ItemList";
		window.document.forms[FormName].ItemId.value = ItemId;
		window.document.forms[FormName].CurrencyName.value = CurrencyName;
		window.document.forms[FormName].ItemPrice.value = ItemPrice;
		window.document.forms[FormName].action ="/public/orderform_step1.asp";
		
		if(CurrencyName=="INR")
			window.document.forms[FormName].ServiceProvider.value = "CCAvenue";
		else if(CurrencyName=="USD")
			window.document.forms[FormName].ServiceProvider.value = "ccnow";
					
		window.document.forms[FormName].submit();
	}

