/* The Firefox is default*/
function openCenteredWindow(url, width, height) {
	if (!width) width = 800;
  	if (!height) height = 600;
  	var left = (screen.width/2) - width/2;
  	var top = (screen.height/2) - height/2;

  	window.open(url, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function openCenteredWindowWidthResizable(url, width, height) {
	if (!width) width = 800;
  	if (!height) height = 600;
  	var left = (screen.width/2) - width/2;
  	var top = (screen.height/2) - height/2;

  	window.open(url, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function openCenteredWindowWidthResizableHandle(url, width, height) {
	if (!width) width = 800;
  	if (!height) height = 600;
  	var left = (screen.width/2) - width/2;
  	var top = (screen.height/2) - height/2;

  	return window.open(url, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function openMultiWindow(url, width, height) {
	if (!width) width = 800;
  	if (!height) height = 600;
  	var left = (screen.width/2) - width/2;
  	var top = (screen.height/2) - height/2;

  	window.open(url, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function openWindowWithScrollBar(url, width, height, id){
	if (!width) width = 800;
  	if (!height) height = 600;
  	var left = (screen.width/2) - width/2;
  	var top = (screen.height/2) - height/2;
    if(!id ) {
        id ="popUpWin"
    }
 	window.open(url, id, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
    return false;
}

// close an opened window
function closeWindow() {
    window.close();
}

function showPixDetails(picture) {
    var url = "";
    if(picture) {
        url = picture.getAttribute("href");
    }
    var width = 800;
    var height = 600;
    var left = (screen.width/2) - width/2;
    var top = (screen.height/2) - height/2;

    window.open(url, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
    return false;
}

