<!--
function MM_openBrWindow(theURL,winName,features) { 
//v2.0 
var winwidth = 600; 
var winheight = 600; 
var posw = (screen.width - winwidth)/2; 
var posv = (screen.height - winheight)/2; 

features = features + ",width=" + winwidth + ",height=" + winheight + 
",left=" + posw + ",top="+ posv 
window.open(theURL,winName,features); 
}

function MM_openBrWindow2(theURL,winName,features) { 
//v2.0 
var winwidth = 500; 
var winheight = 500; 
var posw = (screen.width - winwidth)/2; 
var posv = (screen.height - winheight)/2; 

features = features + ",width=" + winwidth + ",height=" + winheight + 
",left=" + posw + ",top="+ posv 
window.open(theURL,winName,features); 
}

//start flashing text
function initArray() {
	this.length = initArray.arguments.length;
	for (var i = 0; i < this.length; i++) {
	this[i] = initArray.arguments[i];
	}
}

var ctext = "Hi! welcome to programmershelp.<BR>";
var speed = 1000;
var x = 0;
var color = new initArray(
	"ffffff", //white
	"333366" //blue
);


if(navigator.appName == "Netscape") {
	//document.write('<layer id="c"><center>'+ctext+'</center></layer><br>');
}
if (navigator.appVersion.indexOf("MSIE") != -1){
	//document.write('<div id="c"><center>'+ctext+'</center></div>');
}/**/

function chcolor(){ 
	document.all.c.style.color = color[x];
	/*if(navigator.appName == "Netscape") {
		document.c.document.write('<center><font color="'+color[x]);
		document.c.document.write('">'+ctext+'</font></center>');
		document.c.document.close();
	}
		else if (navigator.appVersion.indexOf("MSIE") != -1){
		document.all.c.style.color = color[x];
	}*/
	(x < color.length-1) ? x++ : x = 0;
}
setInterval("chcolor()",1000);
//end flashing text

//-->