function photoview(url,width,height) {
var posleft = (screen.width - width)/2;
var postop = (screen.height - height)/3;
var newwin = window.open('','','width='+width+',height='+height+',top='+postop+',left='+posleft+',location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,directories=0,hotkeys=0,copyhistory=0');
newwin.document.open();
newwin.document.write('<html><head><title>ФОТОАРХИВ</title><meta name="robots" content="noindex"><meta http-equiv="imagetoolbar" content="no"></head>');
newwin.document.write('<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="margin:0px; padding:0px; position:fixed; overflow:none; background:#edf2f8;">');
newwin.document.write('<img src="'+url+'" width="'+width+'" height="'+height+'" border="0" alt=""></body></html>');
newwin.document.close();
newwin.focus();
}


function taskvalidator() {
if ((document.taskform.object.value.length > 512) || (document.taskform.floor.value.length > 512) || (document.taskform.problems.value.length > 512) || (document.taskform.addition.value.length > 512) || (document.taskform.contact.value.length > 512))
	{
	alert("Каждое заполненное Вами поле должно содержать не более 512 символов!");
	return false;
	}
return true;
}
