function openWin(url,name){
if (url=='legal.htm'){
	var myFeatures = 'width=360,height=400,resizable=no,location=no'
}else{
	var myFeatures = 'width=300,height=300,resizable=no,location=no'
	}
var NewWin = open(url, name, myFeatures);
}