// JavaScript Document

function update(){
	var today = new Date();
	document.write(today.getDate() +  " / "+(today.getMonth() + 1) +" / "+today.getYear())
}

function openApp(id){
	openAppWin = window.open("propview.asp?id="+id, "openApp", "menubar=no,scrollbars=yes,status=yes,height="+(screen.height-40)+",width=540");
	openAppWin.moveTo(((screen.width/2)-(540/2)),((screen.height/2)-((screen.height-40)/2)))
}

function openRSS(){
	openAppRSS = window.open("rss.html", "openAppRSS", "menubar=no,scrollbars=yes,status=yes,height="+(screen.height-40)+",width=540");
	openAppRSS.moveTo(((screen.width/2)-(540/2)),((screen.height/2)-((screen.height-40)/2)))
}

