/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * CMS DivSite 1.05
 * Copyright (C) 2003-2007 Div Labs
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

var	pics_ext=	'_big.jpg';
	popup_style=	'menubar=yes,scrollbars=yes';
	popup_width_k=	2/3;
	popup_height_k=	2/3;

function popup(i,d)
{
var	screen_width=	screen.width;
	screen_height=	screen.height;
	popup_width=	screen_width*popup_width_k;
	popup_height=	screen_height*popup_height_k;
	popup_left=	screen_width/2-popup_width/2;
	popup_top=	screen_height/2-popup_height/2;

window.open('popup.php?i='+i+pics_ext+'&d='+d,'popup','left='+popup_left+',top='+popup_top+',width='+popup_width+',height='+popup_height+','+popup_style);
}

