// Standard print code
function printIt(){ 
 if (window.print) {
  window.print() ; 
 }else{
  var browsername = '<object id="browsername1" width="0" height="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>';
  document.body.insertAdjacentHTML('beforeEnd', browsername);
  browsername1.ExecWB(6, 2);
 }
}

// script for scrolling content 
var intCnt;
function horizIframeScroll(layerName,timeMilli) {

	if (intCnt) 
		clearTimeout(intCnt);

	if (window.frames[layerName]) {
		window.frames[layerName].scrollBy(timeMilli, 0);
		intCnt = setTimeout("horizIframeScroll('" + layerName + "'," + timeMilli + ",'h')", 20);
	}
}

function stophorizIframeScroll() { 
	if (intCnt) 
		clearTimeout(intCnt); 
}

function goPopup(url, wdth, hgt) {
	window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + wdth + ',height=' + hgt + ',framemargin=0,leftmargin=0,topmargin=0,marginwidth=0,marginheight=0');
}

function go()
{
	box = document.frmCountry.strCountryLink;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}
//