//FrameBuster script...
function jumpTo(url){
	if (((navigator.appName.indexOf("Microsoft") != -1) && (parseInt(navigator.appVersion) > 3.02)) || location.replace) 
		top.location.replace(url);
	else		
		top.location.href = url;
}

// jump to top of window if being included as part of some other sites frame.	
if( top != self ) 
	jumpTo(self.location.href);


function popup(url, popupName, width, height)
{
	window.open(url, popupName, 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + ',left=100,top=100')
}

function popupNormal(url, popupName, width, height)
{
    window.open(url, popupName, 'toolbar=yes,statusbar=yes,location=yes,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + ',left=100,top=100')
}

// Bookmark this page function
function addToFavorites(urlAddress, pageName) {
	if (window.external) {
	  window.external.AddFavorite(urlAddress,pageName)
	} else {
	  alert("Sorry! Your browser doesn't support this function.");
	}
}

