<!--
function openPopup(itemId, horizontal, mediaType){
	var width;
	var height;
	if(horizontal=="1"){
		width="600"
		height="500"
	}
	else{
		width="500"
		height="575"
	}
	window.open("media_popup.aspx?type=" + mediaType + "&id=" + itemId ,"default","status=0,scrollbars=0,resizable=1,screenX=25,screenY=25,top=25,left=25,toolbar=0,location=0,width=" + width + ",height=" + height);	
}
function openVideoPopup(){
	window.open("popup_video.aspx" ,"default","status=0,scrollbars=0,resizable=1,screenX=25,screenY=25,top=25,left=25,toolbar=0,location=0,width=500,height=325");	
}

function openTechVideoPopup(id){
	window.open("techvideo_popup.aspx?id=" + id ,"default","status=0,scrollbars=0,resizable=1,screenX=100,screenY=100,top=100,left=100,toolbar=0,location=0,width=640,height=525");	
}
//-->