var popWin = null;
var preLink='/en';
/*
function closePopWin() {
//	if (navigator.appName != "Microsoft Internet Explorer" || parseInt(navigator.appVersion) >=4) {
		if(popWin != null) {
			if(!popWin.closed) {
				popWin.document.close();
			}
		} 
	//}
}
*/
function load(LoadUrl, newWidth, newHeight, newScroll) {
	var iMyWidth;
	var iMyHeight;
	//closePopWin();
	if(popWin!=null&&!popWin.closed){
		popWin.close();
		popWin=null;
	}
	iMyWidth = (window.screen.width/2) - (newWidth/2 + 10);
	iMyHeight = (window.screen.height/2) - (newHeight/2 + 50);
	popWin = window.open(LoadUrl,"popUp","status=0,resizable=0,location=0,directories=0,menubar=0,height=" + newHeight + ",width=" + newWidth + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=" + newScroll);
	popWin.focus();
}
function doDBCopy(action) {
	if (confirm("Tikrai?")) {
		load('dbcopy.php?action='+action,400,400,1);
	}
}

function show(LoadUrl, newWidth, newHeight, newScroll) {
	closePopWin();
	popWin = window.open(LoadUrl,"popUp","status=0,resizable=0,location=0,directories=0,menubar=0,top=150,left=0,height=" + newHeight + ",width=" + newWidth + ",scrollbars=" + newScroll);
	popWin.focus();
}

function load1(LoadUrl, newWidth, newHeight, newScroll) {
	var iMyWidth;
	var iMyHeight;
	closePopWin();
	iMyWidth = (window.screen.width/2) - (newWidth/2 + 10);
	iMyHeight = (window.screen.height/2) - (newHeight/2 + 50);
	popWin = window.open(LoadUrl,"popUp","status=1,resizable=1,location=0,directories=0,menubar=1,height=" + newHeight + ",width=" + newWidth + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=" + newScroll);
	popWin.focus();
}

function showItem(id) {

	day = new Date();
	x = day.getTime();
	//pries optimizavima eval("page" + id + " = window.open(preLink+'/product_details.php?product_id=' + id, '" + x + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=500,left = 100,top = 100');");
	eval("page" + id + " = window.open(preLink+'/det-' + id+'-product.html', '" + x + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=500,left = 100,top = 100');");
}

function showItemEN(id) {

	day = new Date();
	x = day.getTime();
	eval("page" + id + " = window.open(preLink+'/en/det-' + id+'-product.html', '" + x + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=500,left = 100,top = 100');");
}
