// simple function to show new modules windows
// Felix - May, 2008
function showModule(nameModule) {
		if (nameModule.toUpperCase() == 'STI') {
			urlLink = 'http://www.ibellagolf.com/webmodules/modSTI.html';
		}
		else {
			if (nameModule.toUpperCase() == 'DSFI') 
				urlLink = 'http://www.ibellagolf.com/webmodules/modDSFI.html';
		}
		
		window.open(urlLink, nameModule.toUpperCase() ,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=604,height=315,left=80, top=80');
}

