﻿function trimString(s){ return s.replace(/(^\s*)|(\s*$)/,""); }
function showImageInfo(id,addHeigth) {
    var h =  650+addHeigth;
	window.open("/AuctionImageInfo.aspx?fid="+id,null,"width=500,height="+h+",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars,titlebar=no");
}

function showExhibitImageInfo(id,addHeigth) {
    var h =  650+addHeigth;
	window.open("/ExhibitImageInfo.aspx?fid="+id,null,"width=500,height="+h+",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars,titlebar=no");
}

function showBannerInfo(id) {
	window.open("/BannerImageInfo.aspx?bid="+id,null,"width=500,height=600,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars,titlebar=no");
}

function PrintImage()
{
    if (document.getElementById("arrow1"))
	    document.getElementById("arrow1").style.display='none';
	    
    if (document.getElementById("arrow2"))
	    document.getElementById("arrow2").style.display='none';
		
	window.print();
	
	if (document.getElementById("arrow1"))
	    document.getElementById("arrow1").style.display='block';
	    
    if (document.getElementById("arrow2"))
	    document.getElementById("arrow2").style.display='block';
}

function SubmitPriceFrom()
{
    var formObj = document.forms.priceReq;
	if (trimString(formObj.RequestContactInfo.value) == false || trimString(formObj.captchavalue.value) == false) { alert("Заполните обязательный поля!"); return false;}
	formObj.submit();
}
