// JavaScript Document
function noteone($num){
	/*var win = new Window({className: "dialog",  width:660, height:400, zIndex: 100, resizable: true, title: "Note 1", showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff, minimizable: true, draggable:true, wiredDrag: true })*/
	
	var win = new Window({className: "dialog", title: "Note "+ $num, 
                      top:70, left:100, width:650, height:300, 
                      url: "http://ar09.scottwilson.com/popups/note"+$num+".php", showEffectOptions: {duration:0.8}})
	win.setStatusBar("Status bar info");
	win.showCenter(); 
}

