﻿// File JScript

function apriPopUpStampa(id,nomepage) { 
myUrl = nomepage+"?id="+id; 
W = 900;
H =720;

LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
TopPosition = (screen.height) ? (screen.height-H)/2 : 0; 
msg=open(myUrl,'Ricerca','toolbar=no,directories=no,menubar=no,width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}

function apriPopUp(myUrl) { 
W = 900;
H = 720;

LeftPosition = (screen.width) ? (screen.width-W)/2 : 0;
TopPosition = (screen.height) ? (screen.height-H)/2 : 0; 
msg=open(myUrl,'Ricerca','toolbar=no,directories=no,menubar=no,width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}

function CheckLen1000(sender, arg) {
		if (arg.Value.length<=1000){
			arg.IsValid = true;
		}
		else {
			arg.IsValid = false;
		}
	}
	
function CheckLen255(sender, arg) {
		if (arg.Value.length<=255){
			arg.IsValid = true;
		}
		else {
			arg.IsValid = false;
		}
	}
	
function CheckLen2000(sender, arg) {
		if (arg.Value.length<=2000){
			arg.IsValid = true;
		}
		else {
			arg.IsValid = false;
		}
	}
