//<!-- JavaScript Document

function changeSearch(id,d,dir)
{
var str=document.getElementById(id).value;
if (dir==1){
	if (str==d) document.getElementById(id).value='';
	}
else {
	if (str=='') document.getElementById(id).value=d;
	}
}


//Submit Form with condition

function submitform2(id1,id2,d)
{
var str=document.getElementById(id2).value;	
if (str!=d && str!=''){
	document.getElementById(id1).submit();
	}
}


//open new window
function opennewwin(url,w,h)
{
var w=window.open(url, "newPhoto", 'width='+w+', height='+h+', scrollbars=yes, location=no, menubar=no, status=no, toolbar=no, resizable=yes,top=2,left=2');
}

//-->
