<!--

function createBookmark() {

	var url=location.href;
	var title=document.title;
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title);}
	else if(window.opera && window.print) { // Opera Hotlist
	 }
	return true;
}


function loadExternal(src)
{
		var script = document.createElement('script');
		script.type = 'text/javascript';
		script.src = src;
		document.getElementsByTagName('head')[0].appendChild(script);  
}

function evalScripts(responseText)
{
	var regex = /<script[^>]*>([\s\S]*?)<\/script>/gi;
    var match;
    while((match = regex.exec(responseText))){ eval(match[1]);}	
}

//-->
