//   Copyright(c) 2003-2005 New Media Guru Ltd
//   email:alex@newmediaguru.com
//   window.onerror = null;

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;
		title='&nbsp;';
		if(arguments[3])title=arguments[3];
		background='#D9EDF8';
		if(arguments[4])background=arguments[4];
		//netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesRead UniversalPreferencesWrite")
		var newWindow=window.open("","image","width="+width+",height="+height+",scrollbars=0");
		//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;
}
