
<!-- The JavaScript Source!! http://javascript.internet.com -->

function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "height=500,width=750,toolbar=No,menubar=No,location=No,scrollbars=Yes,resizable=Yes");
}

 
function StartWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// New Win Fucntion
var nwin = null;
function newwin(url,w,h) {
	if (nwin && !nwin.closed)
	nwin.close();
	setTimeout("wopen(\"" + url + "\"," + w + "," + h + ");",200);
}
function wopen(url,w,h) {
	nwin = window.open("" + url + "","WarbirdsofIndia","width=" + w + ",height=" + h + ",scrollbars=yes,menubar=0,toolbar=0,resizable=yes,status=no,directories=0,top=30,left=30");
}

 
function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
	} 
} 
function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}
