function open_window1(url, width, height) {
	mywin1 = window.open(url,"win1",'alwaysRaised=1,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=' + width + ',height=' + height);
	mywin1.resizeTo(width, height);
	mywin1.focus();
}

function open_window2(url, width, height) {
	mywin2 = window.open(url,"win2",'alwaysRaised=1,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=' + width + ',height=' + height);
	mywin2.resizeTo(width, height);
	mywin2.focus();
}

function show(id, type) {
	if (document.getElementById){
		document.getElementById(id).style.display = type;
	}
}

function showBlock(id) {
	if (document.getElementById){
		document.getElementById(id).style.display = 'block';
	}
}

function hide(id) {
	if (document.getElementById){
		document.getElementById(id).style.display = 'none';
	}
}

function miniInput () { 
	var mText=new Array ('Search Site Here','');
	var oInput=document.getElementById("miniput");
	if(oInput.value==mText[0]) {
		oInput.value=mText[1];
	}
}
