//==========================
var win2_images;

function open_image(src, width, height,title) {
	var iMyWidth;
	var iMyHeight;
	var features;
	if(!width) {width = 400;}
	if(!height){height = 400;}
	features = "toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes";

	iMyWidth = (window.screen.width-(width))/2; 
	iMyHeight = (window.screen.height-(height))/2;

	if(win2_images!=null){
		try{
		win2_images.close();
		}catch(e){}
	}
	
	 win2_images = window.open("","imgWindow", "height=" + height + ",width=" + width + ",left=" + iMyWidth + ",top=" +
		iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + "," + features+ "");

	if (win2_images != null)	{ win2_images.focus(); }

	  var head = '<html><head><title>'+title+'</title></head>';

	  var body = '<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><center><img id="img" src="'+ src+ '"/></center></body><html>';
	  
		win2_images.document.write(head + body);
	  

}


function OpenCallOnline(phone, fio) {
    var width = "335", height = "440";
    var left = (screen.width / 2) - width / 2;
    var top = (screen.height / 2) - height / 2;
    window.open("/Online/CallOnline.aspx?phone="+phone+"&fio="+escape(fio), "callwindow", 'location=0,status=0,scrollbars=0,toolbar=0,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',screenX=' + left + ',screenY=' + top);
    return false;
}
