function prodTabBoxSwitch(topId) {
	infoTab=document.getElementById('prodTabBox_info');
	shipTab=document.getElementById('prodTabBox_ship');
	payTab=document.getElementById('prodTabBox_pay');
	topTab=document.getElementById(topId);
	infoTab.style['z-index']=2;
	shipTab.style['z-index']=2;
	payTab.style['z-index']=2;
	topTab.style['z-index']=3;
	infoTab.style.display='none';
	shipTab.style.display='none';
	payTab.style.display='none';
	topTab.style.display='block';
}
function openSelected(oId,sId) {
	toOpen=document.getElementById(oId);
	toOpen.style.display='block';
	toSelect=document.getElementById(sId);
	toSelect.focus();
	toSelect.select();
	
}
function selectInput(sId) {
	toSelect=document.getElementById(sId);
	toSelect.focus();
	toSelect.select();
	
}
function popUp2(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=270,height=228');");
}
