// pop-up windows

function open_popup(url,name,width,height,left,top,scrollbars,resizable) 
{
window.open(url,name,'width='+width+',height='+height+',left='+left+',top='+top+',scrollbars='+scrollbars+',resizable='+resizable+'');
}

// Add to Favorite
function AddtoFavorite(favoriteUrl,favoriteTitle)
{
	window.external.AddFavorite(favoriteUrl,favoriteTitle);
}
