// JavaScript Document

function openTWindow(w2o) 
{
	var open1 =
	window.open(w2o,'','channelmode=no, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, titlebar=no, width=960');
};

function writeMessage(selectedID,what2display) 
{	
	var now=new Date();
	now=Date.getDate();
	document.getElementById("t_date").innerHTML=new Date();
	return;
};
	
function selectPage(selOption)
{
	var selPage="";
	//alert("Inside SelectPage Function - SelOption: " + String(selOption));
	
	document.cookie = "pOption=" + selOption;
		
	switch(selOption)
	{
		case 0:
			selPage="bdMfrSCFR.php";					
		break; 
		
		case 1:
			selPage="bdMfrARP.php";
		break;
		
		case 2:
			selPage="bdMfrDiscos.php";
		break;
		
		case 3:
			selPage="bdMfrDNO.php";
		break;
	}
	//alert("Inside SelectPage Function - SelectPage: " + selPage);
	return selPage;
};

function wCookie(cName,cValue)
{
	this.cookie = '"' + cName + '="' + cValue;
	return;
	
};
