////////////////////////////////////////////////////////////
//
//  xhtmlUtil.js
//
//  This file contains useful functions needed in xhtml
//  pages to have similar html 4.0 functions but in a 
//  correct way for validators
//
////////////////////////////////////////////////////////////

//////////////////////////////////////////////////
//
//  Open a new window of the browser to view the
//  the specified URL.
//  This function is used for 'href' attribute 
//  of tag 'a' in xhtml pages due to the fact 
//  that 'target' attribute isn't anymore valid.
//
function newWindow(url) {
	window.open(url);
}
