
var viewWindow

var viewTitle = new Array(16)
var winStat= "Close"


viewTitle = [ "Real Estate Notebook - Main Screen", "Real Estate Notebook - Additional Attributes", "Real Estate Notebook - Advanced Attributes", "Real Estate Notebook - Expense Breakdown", "Real Estate Notebook - Income Breakdown", "Real Estate Notebook - Report", "Real Estate Notebook - Attachments", "Real Estate Notebook - Property Forecast", "Real Estate Notebook - Portfolio Report", "Real Estate Notebook - Summary List", "Real Estate Notebook - Depreciation", "Real Estate Notebook - Comparison Chart"]


	
	function createPage(imgSource, titleNumber){
		winStat= "Close"
		if(!viewWindow || viewWindow.closed){
			viewWindow = window.open("","","HEIGHT= 758,WIDTH= 800,status=yes,resizable=yes")
		}
		else{	viewWindow.close()
			viewWindow = window.open("","","HEIGHT= 758,WIDTH= 800,status=yes,resizable=yes")
		}
		

		var display
		

		display= "<HTML><HEAD><TITLE>" + viewTitle[titleNumber] + "</TITLE>"
		display+= "<LINK REL= 'STYLESHEET' TYPE= 'text/css' HREF= 'style.css'></HEAD>" 
		display+= "<BODY>"
		display+= "<TABLE align= Center><TR><TD><img src=" + imgSource + " ALT=" + "'" + viewTitle[titleNumber] + "'" +"></TD></TD>" 
		display+= "<TR><TD align= Center><BR><A HREF= 'Javascript:window.close()' >Close</A></TD></TR>"
		display+= "</TABLE></BODY></HTML>"
		viewWindow.document.writeln(display)
		viewWindow.document.close()

}

	function micro(msg){
		window.status= "Click to preview " + msg
		return true
}		 	

	function clrMsg(msg){
               	window.status= msg
               	return true
}

	function newWin(height,width, url){

		if(!viewWindow || viewWindow.closed){
			viewWindow = window.open(url,"","HEIGHT=" + height + "," + "WIDTH=" + width + 			",status=yes,resizable=yes, scrollbars=yes")
		}
		else{	viewWindow.close()
			viewWindow = window.open(url,"","HEIGHT=" + height +"," + "WIDTH=" + width + 			",status=yes,resizable=yes,scrollbars=yes")
		}
	}