function OpenPrices(pPartnerID, pCountryID, pVAT)
{
	destpage = 'Prices.aspx?PartnerID=' + pPartnerID.toString() + '&CountryID=' + pCountryID.toString() + '&VAT=' + pVAT.toString();
	scrleft = ((screen.width-300)/2);
	scrtop = ((screen.height-200)/2);
	attribs = 'dependent,width=300,height=200,left=' + scrleft + ',top=' + scrtop;
	win = window.open(destpage,'APPrices', attribs);
	win.focus();
}
function OpenMap(pCCode, pNCode)
{
	destpage ='http://www.gsmworld.com/cgi-bin/ni_map_gbap.pl?cc=' + pCCode + '&net=' + pNCode;
	scrleft = ((screen.width-490)/2);
	scrtop = ((screen.height-460)/2);
	attribs = 'dependent,width=490,height=460,left=' + scrleft + ',top=' + scrtop;
	win = window.open(destpage,'APMap', attribs);
	win.focus();
}

function GetPrices(countryid)
{

price = 'Prices.aspx?partnerid='+ppaertnerid.tostring() + '&countryid=' + pcountryid.tostring() + '&VAT=' + pvat.toString();
scrleft = ((screen.width-300)/2);
scrtip = ((screen.height-200)/2);
attribs = 'dependent,width=300,height=200.left='+scrleft + ',top=' + scrtop;
win = window.open(destpage,'apprices',attribs);
win.focus();
}



