/*
 * Copyright : (c) 2006 Webfish IT Services
 * Website   : http://www.webfish.nl
 * Email     : info@webfish.nl
 * -------------------------------------------------------------------------
 *   $Id: script.js 5 2007-04-03 12:35:31Z caspar $
 * -------------------------------------------------------------------------
 */

function appendOnLoadAlert(str_msg)
{
	var appendOnLoadAlert_oldOnload = (window.onload) ? window.onload : function () { };
	window.onload = function () { appendOnLoadAlert_oldOnload(); alert(str_msg); }
}

function popImg(sImg, width, height, caption)
{
	winFeatures = "width=" + width + ",height=" + height + ",left=50,top=50,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,location=no";
	spawn = window.open(sImg, "", winFeatures);
	spawn.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="pragma" content="no-cache"><meta http-equiv="expires" content="sat, 01 jan 2000 1:00:00 gmt"><title>'+ caption +'<\/title><\/head>'+
		'<body onBlur="self.close()" onclick="self.close()" background="'+ sImg +'" '+
		'style="background-repeat: no-repeat; background-position: top center;"><\/body><\/html>');
	spawn.document.close();
}
