function popupWindow(url){ 
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=450,height=450,screenX=150,screenY=150,top=150,left=150');
}

//product inforamtion: show large images in a placeholder
function osc_bridge_swap_image(id){
	if(document.getElementById(id)){
		document.getElementById('osc_image_placeholder').innerHTML=document.getElementById(id).innerHTML;
		document.getElementById('osc_image_placeholder').style.display='inline';
	}
}

function osc_bridge_hide_image(){
	document.getElementById('osc_image_placeholder').innerHTML='';
	document.getElementById('osc_image_placeholder').style.display='none';
}


function osc_bridge_show_extra_images(id){
	if(document.getElementById(id)){
		document.getElementById(id).style.display='inline';
	}
}
function osc_bridge_hide_extra_images(id){
	if(document.getElementById(id)){
		document.getElementById(id).style.display='none';
	}
}	