/**
 * @autor	Alexey 'MadGod' Oblog
 */


/**
 * Creates modal browser window by url 
 * May be used as "onclick"-handler from anchor-link: 
 * <a target="_blank" href="http://www.site.com/page.html" onclick="return modal('http://www.site.com/page.html')"> ...
 * 
 */

function modal(url, style){
    try{
        if(!style){
            style = 'toolbar=no,location=no,status=no,menubar=no,height=400,width=400';
        }
	var wnd = window.open(url,'', style);

	if (!wnd.focus){
		wnd.focus()
	}
	}catch(e){
	    return true;
	}
	return false;
}
