function doFullPage(search_type)
{
	document.form.result_format.value='page';
	document.form.view.value = search_type;
	document.form.submit();
}

function doList(search_type)
{
	document.form.result_format.value='list';
	document.form.view.value = search_type;
	document.form.submit();
}

function doRepeatSearch(search_type)
{
	document.form.view.value = search_type;
	document.form.submit();
}

function doViewPlate(plate_id)
{
	plate = window.open("index.php?view=view_plate&plate_id=" + plate_id,"plate","resizable=no,location=no,toolbar=no,height=300,width=350,scrollbars=no,top=" + (screen.height-200)/2 + ",left=" + (screen.width-350)/2);
	plate.focus();
}

function doOpenHeritageForm(plate_id)
{
	window.open("index.php?view=heritage_interest_form&plate_id=" + plate_id,"plate","resizable=no,location=no,toolbar=no,height=800,width=500,scrollbars=no,top=" + (screen.width/2-200) + ",left=" + 50);
}

function doWindowResize(width,height)
{
	window.moveTo(screen.width/2-200,50);
	window.resizeTo(width,height);
}
