function randNum(num)
{
	var now = new Date();                                 
	var rand = Math.round(num * Math.cos(now.getTime())); 
	if (rand < 0) 
   		rand = - rand; 
  if (rand == 0) 
   		rand++;
	choice = rand;
	return rand;
}

function static_content()
{
	var rand_number = randNum(2) - 1;
	
	var link_1 = "<A HREF=\"http://www.sahajayoga.org.il/sahaj/the_world.html\" CLASS=\"ok_he\" TARGET=\"_blank\">\"Why do people who follow Moses, Christ or Mohammed fight? They have the same roots. At least these three religions should produce people who understand the oneness of their religions.\"<br>(Meta Modern Era, p. 188)</a>";
	
	var link_2 = "<A HREF=\"http://www.sahajayoga.org\" CLASS=\"ok_he\" TARGET=\"_blank\">\"You cannot know the meaning of your life until you are connected to the power that created you.\"<br>Shri Mataji Nirmala Devi</a>";
	
	var arr_links = new Array (link_1, link_2);	
	document.write(arr_links[rand_number]);
}

function pp_ad()
{
	var add = "<span class=\"ad_head\">Weekly Programs in Haifa</span><br><br><br><br><span class=\"ad_date\">every Thursday 19:30<span><span class=\"ad_date_red\"><br>Free entrance.</span><br><br><br><br><span class=\"ad_date\">\"Naamat\" Bait Beba, Zahal St. 14,<br> Kiriat Eliazer, Haifa<br><br><br></span><span class=\"text_black\">Questions: 051-859680 (Alex)</span>"
	document.write(add);
}

function launch(file_name) {
  remote = open(file_name, "programs", "width=320,height=400,left=0,top=0,resizable=yes,menubar=yes");
	remote.focus();
}

//--------- browser ---------------------

var browsername
browsername = navigator.appName;

function add_paragraph() {
	if (browsername.indexOf("Microsoft")!= -1) {
		document.write ("<table><tr><td height='30'><p></p></td><tr></table>");
	}
}

function encoding() {
	if (browsername.indexOf("Microsoft")!= -1) {
		document.write ("To see this Hebrew page proper:<br>Right Click -> Encoding -> Hebrew (Windows)");
	} else {
		document.write ("To see this Hebrew page proper:<br>Top Menu -> View -> Character Coding -> Hebrew (Windows)");
	}
}

