/* (c) Igor V Cadez 2005 */
function infopopup(wname,vars,pg,features)
{
	var wnd = window.open('',wname,features);
	if(wnd==null || typeof(wnd)=="undefined")
	{
		alert("Could not create popup!");
		return;
	}

	wnd.location.href="http://ww3.bt-store.com/"+pg+(vars?"?"+vars:"");
	wnd.focus();
}

function postback(id,idloc)
{
	if(!opener||!opener.document||!id||id=='') return;
	var el=opener.document.getElementById(id);
	var elloc=document.getElementById(idloc);
	if(!el||!elloc) return;
	el.value=elloc.value;
	window.close();
}