// pop up generator
function dynaGoPop( page, name, width, height, yesORno ){
	var yon = yesORno;
	yon = ( yon )? yesORno : 'auto';
	var goPopX = (screen.width/2) - (width/2);
	var goPopY = 8;
	var loc = "left="+goPopX+",top="+goPopY;
	goPopWindow = window.open( page,name,"scrollbars="+yon+",resizable=no,width="+width+",height="+height+","+loc );
}

function product_swap( newProductCode )
{
	document.getElementById( 'PROD_form' ).Product_Code.value = newProductCode;
}