function openPopupWin(strUrl, strName, intScrollBars, intWidth, intHeight){
	window.open(strUrl, strName,'toolbar=0,location=0,directories=0,status=0,resizable=1,menubar=0,scrollbars=' + intScrollBars + ',width=' + intWidth + ',height=' + intHeight);
}

function printArticle(id, strName){
	window.open('/artikel_print.asp?articleid=' + id, strName,'toolbar=0,location=0,directories=0,status=0,resizable=1,menubar=1,scrollbars=1,width=410,height=500');
}

function openJobAd(strUrl){
	openPopupWin(strUrl, 'jobads', 1, 430, 460);
}

function printPage(){
	if(window.print){
		window.print();
	}
}

function changeAdPrices(objSelect){
	var intSelected = parseInt(objSelect.options[objSelect.selectedIndex].value);
	switch(intSelected){
		case 1 :
			//document.getElementById('page2').style.display = 'none';
			document.getElementById('content2').style.display = 'none';
			//document.getElementById('page1').style.display = 'inline';
			document.getElementById('content1').style.display = 'inline';
			break;
		case 2 :
			//document.getElementById('page1').style.display = 'none';
			document.getElementById('content1').style.display = 'none';
			//document.getElementById('page2').style.display = 'inline';
			document.getElementById('content2').style.display = 'inline';
			break;
	}
}