/**
 * @author civic
 */

popUp = function (src, width, height) {
	
	var left = 0, top = 0, sc = 0;
	
	day = new Date();
	id = day.getTime();
	
	if(width > window.screen.availWidth){
		width = window.screen.availWidth;
		sc = 1;
	}
	
	if(height > window.screen.availHeight){
		height = window.screen.availHeight;
		width = (Number(width)+17);
		sc = 1;
	}
	
	left = Math.round((screen.width - width) / 2);
	top = Math.round((screen.height - height) / 2);
	
	var URL = "popup.php?src=" + src + "&width=" + width + "&height=" + height;

	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + sc + ',location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ", left=" + left + ", top=" + top + "');");
};
