function popup(url) {
	newwindow = window.open(url,'Inside','width=470,height=370,resizable=0');
	newwindow.focus();
}

function popupL(url) {
	newwindow = window.open(url,'Inside','width=750,height=550,resizable=0');
	newwindow.focus();
}

function ClearFields(FieldName) {
	FieldName.value = "";
}