//   Copyright(c) 2003-2004 by NMG
//   email:alex@newmediaguru.com
//window.onerror = null;

var win_properties="width=400,height=300,left=200,top=200,scrollbars=0";

function open_win(url){
	if(arguments[1])win_properties=arguments[1];
	window.open(url,"win",win_properties);
	return false;
}

function popup_image(link,width,height){

		if(!width)width=640;
		if(!height)height=480;

		var title='&nbsp;';

		if(arguments[3])title=arguments[3];
		background='#D9EDF8';
		if(arguments[4])background=arguments[4];

		var newWindow=window.open("","image","width="+width+", height="+height+", scrollbars=0, left="+((screen.width)?(screen.width-width)/2:200)+",top="+((screen.height) ?(screen.height-height)/2:200)+",");
		//newWindow.window.resizeTo(width,height);
		//newWindow.document.resizeTo(width,height);

		newWindow.document.write('<html><title>'+title+'</title><body leftmargin="0" rightmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="'+background+'" onLoad="this.focus();">');
		newWindow.document.write('<img src="'+link+'" onClick="window.close();" border="0" alt="'+title+'" title="'+title+'">');
		newWindow.document.write('</body></html>');
		newWindow.document.close();

		return false;
}

function close_win() {
  if (win && win.open && !win.closed) win.close();
}


