


function Popup(url) {
	var popup = null;
	var window_height = 584;
	var window_width = 415;
	popup = window.open(url, 'popup', 'toolbar=yes,menubar=no,scrollbars=yes,resizable=yes,status=yes,location=no,height='+window_height+',width='+window_width);
	popup.focus();
	return false;
}


function OpenWindow(href, target, attributes) {
	var popup = null;
    try{
        popup = window.open( href, target, attributes );
	    if((/object/i).test(new String( popup ))){
			popup.focus();
		    return false;
		}
	}catch(e){}
    return true;
}