function wopen(page,w,h,scroll,resizable){
	if(!scroll) scroll = 0
	if(!resizable) resizable = 0
		
	popup = window.open(page,"popupwin","status=0,width="+w+",height="+h+",scrollbars="+scroll+",resizable="+resizable+"",true)
	popup.focus()
}

function goTo(mypage){
	if( confirm("Sicuro di voler proseguire?") ){
		document.location.href(mypage);
	}
}

function resetForm(page){
	document.location.href = page
}

function upload(nFrm, nIpt, folder){
	w = 300, h = 120
	aw = screen.availWidth
	ah = screen.availHeight

	pop = window.open( "upload.asp?folder="+folder+"&action=set_upload&nFrm="+nFrm+"&nIpt="+nIpt,"myUpload","status=no,scrollbar=no,width="+w+",height="+h )
	pop.moveTo((aw/2-w/2),(ah/2-h/2))
	pop.focus();
}

function setColor(canvas,field){
	color = document.getElementById(field).value;
	if(color.length==7){
		document.getElementById(canvas).style.backgroundColor = color;
		document.getElementById(canvas).style.border='none'
		document.getElementById(field).value = color.toUpperCase()
		
	}
}