/**
 * Open the print window
 */
function showPrintWindow(url,width,height) {
  var windowObj;

  windowObj = window.open(url,'printWindow','toolbar=no,width=' + width + ',height=' + height + ',directories=no,status=no,scrollbars=yes,resizable=yes,menubar=yes');

  if (windowObj != null) {
    windowObj.focus();
  }

  reload = false;
}

/**
 * Encodes to querystring
 */
function encodeQs(input) {
	encodedHtml = escape(input);
	encodedHtml = encodedHtml.replace(/\//g,"%2F");
	encodedHtml = encodedHtml.replace(/\?/g,"%3F");
	encodedHtml = encodedHtml.replace(/=/g,"%3D");
	encodedHtml = encodedHtml.replace(/&/g,"%26");
	encodedHtml = encodedHtml.replace(/@/g,"%40");
	return encodedHtml;
}

/**
 * Functions for the layer2 menu
 */
function layerMenuOver(elementid, imgSrc) {
	var td1 = document.getElementById('menu_' + elementid + '_td1');
	td1.bgColor = '#E2CCDF';
	td1.style.color = '#700060';

	var td2 = document.getElementById('menu_' + elementid + '_td2');
	td2.bgColor = '#E2CCDF';

	var img = document.getElementById('menu_' + elementid + '_img');
	img.src = imgSrc;
}
function layerMenuOut(elementid, imgSrc) {
	var td1 = document.getElementById('menu_' + elementid + '_td1');
	td1.bgColor = '#700060';
	td1.style.color = '#FFFFFF';

	var td2 = document.getElementById('menu_' + elementid + '_td2');
	td2.bgColor = '#700060';

	var img = document.getElementById('menu_' + elementid + '_img');
	img.src = imgSrc;
}
