
var layout = {
	defaultHeader:	"Bindows",

	root:			"./",

	writeHeader:	function (sHeader) {
		document.write('<div class="header"><h1>' + (sHeader || layout.defaultHeader) +'</h1></div>');
	},

	writeBackLink: function(){
		if ( history.length > 0 )
			document.write( "<p><a href='javascript:history.back()'>Back</a></p>" );
	},

	writeLaunchLink: function( adfPath, bindowsPath, desc ) {
		document.write( "<p><a href='#' onclick=\"biExec('" + bindowsPath + "' , '" +  adfPath +"');return false;\">Launch " + desc + "</a></p>" );
		document.write( "<p><a href=\"" + adfPath + "\">View Sample Source</a></p>");
	},


	writeNavigationBar:	function () {
		document.write( '<div dir="rtl" class ="navigation-bar"><ul>' +
			'<li><a href="' + layout.root +  './index.html'+ '" class="current">עמוד השער</a></li>' +
			'<li><a href="' + layout.root + './editor.html">לפי שעה</a></li>' +
			'<li><a href="' + layout.root + './toc.html">תוכן העניינים</a></li>' +
			'<li><a href="' + layout.root + './about.html">אודותינו</a></li>' +
			'<li><a href="' + layout.root + './subscribers.html">מנויים</a></li>' +
			'<li><a href="http://www.iton77.com/312">גליון 312-313</a></li>' +
			'<li><a href="http://www.iton77.com/314">גליון 314</a></li>' +
			'<li><a href="http://www.iton77.com/315">גליון 315</a></li>' +
			'<li><a href="http://www.iton77.com/316">גליון 316</a></li>' +
			'<li><a href="http://www.iton77.com/317">גליון 317</a></li>' +
			'<li><a href="http://www.iton77.com/318">גליון 318</a></li>' +
			'<li><a href="http://www.iton77.com/319">גליון 319</a></li>' +
			'<li><a href="http://www.iton77.com/320">גליון 320-321</a></li>' +
			'<li><a href="http://www.iton77.com/322">גליון 322</a></li>' +
			'<li><a href="http://www.iton77.com/323">גליון 323</a></li>' +
			'<li><a href="http://www.iton77.com/324">גליון 324</a></li>' +
			'</ul></div>');
	},

	formatDate: function (d) {
		function f(n) {
			return n < 10 ? "0" + n : n;
		}
		return d.getFullYear() + "-" + f(d.getMonth() + 1) + "-" + f(d.getDate());
	},

	init:	function (sRootPath) {
		layout.root = sRootPath || "./";

		if (layout.supportsBindows())
			document.write("<script type=\"text/javascript\" src=\"" + layout.root + "bindows/html/js/bilauncher.js\"></script>");
		else {
			biExec = function () {
				alert("You need Internet Explorer 5.5 or later for Windows to runt his application");
			};
		}
	},

	includeStyleSheet: function() {
		if ( screen.width < 900 )
			document.write( "<link rel='stylesheet' type='text/css' href='css/main.css'>" );
		else {
		document.write( "<link rel='stylesheet' type='text/css' href='css/main.css'>" );
		}
	},

	writeIssueDetails: function() {
		document.write( "<p align='center'>" );
		document.write( "<span lang='he'>גליון 325 </span><img src='image/black-ball.gif'  style='width:0.6em;height:0.6em'>כסלו תשס\"ח <img src='image/black-ball.gif' style='width:0.6em;height:0.6em'>דצמבר 2007<img src='image/black-ball.gif'  style='width:0.6em;height:0.6em'> שנה ל'א");
		document.write( "</p>" );
	}	



};

//layout.writeSupportedStyles();

