function open_window(url) {
	apply = window.open(url,"Loading",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=550,height=450');
}

function openTarget (form, features, windowName) {
	if (!windowName)
		windowName = 'formTarget' + (new Date().getTime());
		form.target = windowName;
		open ('', windowName, features);
}

function open_address_window(url) {
	apply = window.open(url,"Loading",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=500,height=450');
}

function showMe()
{
	var el;
	el = document.getElementById('contentDiv').style;
	el.top = '110px';
}

function hideMe()
{
	var el;
	el = document.getElementById('contentDiv').style;
	el.top = '-1000px';
}
