
////////////////////////////////////////////////////////////////
//                                                            //
///          Common Javascript For 'Itsa-Knockout'           ///
//                                                            //
////////////////////////////////////////////////////////////////
//:::::::::::-  ©Copyright DiGi-Masters.com 2004  -::::::::::://
////////////////////////////////////////////////////////////////


function BookmarkSite() {
	// only works on MSIE
	if(navigator.userAgent.indexOf("MSIE") != -1) {
		window.external.AddFavorite('http://www.itsa-knockout.co.uk/', 'Itsa-Knockout.co.uk');
	}
}


function ShowRequestInfo() {
	window.open("contactform.htm", "contactWindow", "status=yes,scrollbars=yes,resizable=no,menubar=no,toolbar=yes" +
				      ",height=500,width=600,top=" + ((screen.availHeight - 550) / 2) + ",left=" + 
							((screen.availWidth - 550) / 2)).focus();
}


function SetStatus(toStr) {
	if(toStr == "defStr") {  toStr = "...  King Of The Castles Presents  -  Its A Knockout!  ...";  }
	window.status = toStr;
}


