
function TargetEdit(x,y)
{
	frm=document.forms['target'];
 frm.VslCd.value=y;
 frm.action=x;
	frm.submit();
}

function Target(x)
{
	frm=document.forms['target'];
 frm.action=x;
	frm.submit();
}

function TargetArea(x,y)
{
	frm=document.forms['target'];
 frm.area.value=y;
 frm.action=x;
	frm.submit();
}


