// Opens a new window with the specified options 
function openNewWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}

// Redirects to the specified url
function redirect(url)
{
	window.location = url;	
}