/* remove text from field*/
function removeText() {
	if ( document.getElementById("search_form").keywords.value == "Search our site" ) {
		document.getElementById("search_form").keywords.value = "";
	} else {
		
	}
}

/* replace text from field*/
function replaceText() {
	if ( document.getElementById("search_form").keywords.value == "" ) {
		document.getElementById("search_form").keywords.value = "Search our site";
	} else {
		
	}
}

/* for popups */
function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	newwindow = window.open(strURL, 'newWin', strOptions);
	if (window.focus) {newwindow.focus()}
	newwindow.moveTo(200,200);
}