﻿// JScript File
function popUpProductImage(path, width, height, title) {
	var posX, posY, screenH, screenW, popH, popW;
	
	screenH = screen.availHeight;
	screenW = screen.availWidth;
	
	popW = (screenW < width) ? screenW : width;
	popH = (screenH < height) ? screenH : height;
	popW += 40;
	popH += 40;
	
	posX = screenW > popW ? (screenW-popW)/2 : 0;
	posY = screenH > popH ? (screenH-popH)/2 : 0;
	
	var popup = window.open(path, "Bild", "width="+popW+",height="+popH+",left="+posX+",top="+posY+",title="+title+",scrollbars=yes");
	popup.focus();
}
