/*
JAVASCRIPT FUNCTIONS
(c) 2005 Geert Bollen.
All rights reserved. 
http://www.geertbollen.be
*/

// OPEN NEW WINDOW
function openWindow(url,name,features) { 
	window.open(url,name,features); 
}

// EMAIL
function email(name,domain) { 
	adress = 'mailto:'+name+'@'+domain;
	window.location = adress;
}

// SWAP IMAGE
function js_swapimage(input, iwidth, iheight) { 
	document.view.src = input;
	document.view.height = iheight;
	document.view.width = iwidth;
}
