function submitForm()
{
  document.myForm.submit();
}
function submitSearchForm()
{
  document.the_find.submit();
}
function submitSearchFormTop()
{
  document.the_find_top.submit();
}
function toggle_login(id) {
var login1 = document.getElementById(id);
if(login1.style.display == 'none')
login1.style.display = 'block';
else
login1.style.display = 'none';
}
function clearForm() {
	document.forms["myForm"].elements["wkhf-wkhf"].value = "";
}
function clearSearchForm() {
	document.forms["the_find"].elements["s"].value = "";
}
function clearSearchFormTop() {
	document.forms["the_find_top"].elements["s"].value = "";
}
function portfolio(id,w,h,image,title,caption){
var photo_title = id+'_title';
var photo_caption = id+'_caption';
	document.getElementById(id).innerHTML = '<img src="'+image+'" width="'+w+'" height="'+h+'" border="0" />';
	document.getElementById(photo_title).innerHTML = "<h2>"+title+"</h2>";
	document.getElementById(photo_caption).innerHTML = "<p>"+caption+"</p>";
}



