﻿function backHome()
{
    window.location = 'cfiReserve.aspx';
}

function backHomeP()
{
    window.location = 'PcfiReserve.aspx';
}


function getElementsByClass( searchClass, domNode, tagName) {
	if (domNode == null) domNode = document;
	if (tagName == null) tagName = '*';
	var el = new Array();
	var tags = domNode.getElementsByTagName(tagName);
	var tcl = " "+searchClass+" ";
	for(i=0,j=0; i<tags.length; i++) {
		var test = " " + tags[i].className + " ";
		if (test.indexOf(tcl) != -1)
			el[j++] = tags[i];
	}
	return el;
}


function gotoModal(url)
{
	var title="title";
	var Width="800";
	var Height="700";
	var arguemnts = new Object();
	arguemnts.window = window;
	if (document.all && window.print)
	{
		window.showModalDialog(url,"","dialogWidth:" + Width + "px;dialogHeight:" + Height + "px;center:yes;status:no;scroll:yes;help:no;");
	}
	else 
	{ 
		window.open(url,"","width=" + Width + "px,height=" + Height + "px,resizable=1,scrollbars=1"); 
	}
}

function strTrim(str){  return str.replace(/(^\s*)|(\s*$)/g, "");}

