/*
Name : abDisplayURL
Description : Change the displayed URL
Parameters In : 
 - abURL : The URL to display
Parameters Out : N/A
Parameters In/Out : N/A
Returned Value : N/A
*/
function abDisplayURL(abURL,abInBlanckWindow)
{
	if(abInBlanckWindow == true)
		window.open(abURL,"_blank");
	else
		window.location.href = abURL;
}
