/*
 * standard js functions available for each site
 *
	$Date: 2008-11-22 23:32:11 $
	$Revision: 1.1 $
	$Author: dany $
	$Source: /home/shared/cvsroot/OSCMS/js/standard.js,v $
 * 
*/

function swapimage (element, imagename)
{
	element.src = imagename;
}

function windowopen (url, name, settings)
{
	x = window.open(url, name, settings);
	x.focus();
}