function IsInIframe()
{
    var ParObj;
    ParObj = parent[0];
    if (ParObj == null)
        document.location = "\default.aspx?SP=" + document.location;
}

function OvrImg(){
    
}

function validaMail(CtlID) {
    var src = GetCtlValue(CtlID);
    var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";
    var regex = new RegExp(emailReg);
    return regex.test(src);
  }
  
function validaEsistenza(CtlID) {
    return (GetCtlValue(CtlID)!="");
  }
  
function GetCtlValue(CtlID){
    var srcCtl = document.getElementById(CtlID);
    if( srcCtl == null){
        return "";
    }else{
        return srcCtl.value;
    }
  }
  
  

function openWindow(arg_theUrl, arg_name, arg_width, arg_heigth, arg_scroll){
  var Win = window.open('PG_ImgZoomX.aspx?ID=' + arg_theUrl,arg_name,'width=' + arg_width + ',height=' + arg_heigth + ',leftmargin="10",topmargin="10",marginwidth="0",marginheight="0",scrollbars='+ arg_scroll +',menubar=no,status=no,resizable=yes');
  Win.focus();
}



function ItemOvr(Item)
{
	if (Item.className!='GallImgSel') Item.className='GallImg_OVR';
}

function ItemOut(Item)
{
	if (Item.className!='GallImgSel') Item.className='GallImg';
}


function resizePage()
{
	var HeaderHeight=225;
	var Height=0;
	Height= document.body.offsetHeight - HeaderHeight; //clientHeight
	document.getElementById("ContentWrapper").style.height=Height + 'px';
}