// JavaScript Document
function showImagePopUp(strImageUrl){
	window.open("image.asp?img="+strImageUrl,"ImagePopUp",'width=200,height=200,location=no,toolbar=no,scrollbars=no,resizable=no,left=100,top=100');
}

function printPage(PageId){
	window.open("base.asp?print=true&pageid=" + PageId);
}

function setFrameHeight(){
	if(document.all){
		document.getElementById("formFrame").height = formFrame.document.getElementById("mainDiv").offsetHeight;
	}else{
		document.getElementById("formFrame").height = formFrame.document.getElementById("mainDiv").offsetHeight + 20;
	}
}

function changeApotheek(strApo){
	document.location = "base.asp?apo=" + strApo;	
}

function openAssorti(iArtikelId){
	var x = (screen.width  / 2) - 195;
	var y = (screen.height / 2) - 200;
	window.open("assorti_pop.asp?ia="+iArtikelId,"AssortiPopUp",'width=390,height=400,location=no,toolbar=no,scrollbars=no,resizable=no,left='+x+',top='+y);
}