function showWindow(image, content, title, caption)
{
    overlib("<table border=0 cellpadding=1 cellpadding=1 class='vehiclepopup'><tr><td valign=top><table border=0 cellpadding=0 cellpadding=0><tr bgcolor=0173B9><td><img src='" + image + "' width=90 height=68 border=0></td></tr></table></td><td valign=top class=black11>" + content + "</td></tr></table>", caption, 1, 2, 000000);
}

function addFileField()
{
	var container = $('file_fields');
	var label = document.createElement("LABEL");
	var bk = document.createElement("BR");
	label.innerHTML = "Image:"
	var field = document.createElement("INPUT");
	field.type = "file";
	field.name = "vehicleimage[image][]";
	field.id = "vehicleimage";
	container.appendChild(label);
	container.appendChild(field);
	container.appendChild(bk);
}

function popupWin(path, name, height, width)
{
	window.open(path, name, "width=" + width + ", height=" + height + ",location=0,menubar=0,resizeable=0,toolbar=0,status=0");
}

