function popWin(sUrl,iWidth,iHeight,sWindow,iScrollbar) {

	if (iScrollbar == 1) {
		iScroll = 1
	} else {
		iScroll = 0
	}

    var iLeftPos = Math.round((screen.width-iWidth)/2);
    var iTopPos = Math.round((screen.height-iHeight)/2);
    popwin = window.open(sUrl,sWindow,'width='+iWidth+', height='+iHeight+',top='+iTopPos+',left='+iLeftPos+',scrollbars='+iScroll);
}

function sendfile(iID) {
	popWin('/send_file.asp?intID='+iID,50,50,'file_download')
}

function setTitleText(sTitle) 
{
	document.getElementById("page_title").innerHTML = sTitle;
}

function switchImage(iID)
{
	var str = iID.src;
	str = str.replace("70x70", "250x250");
	document.getElementById("image_large").src = str;
}

function largeImage(iID)
{
	var str = iID.src;
	str = str.replace("&strSize=250x250", "");
	str = str.replace("http://www.cultshop.dk/get_file.asp?", "");
	popWin('/picture.asp?' + str,450,450);
}
