function closeWindow()
{
	window.close();
}


function openWindow(url, windowName, width, height, scrollbars, resizable)
{
        windowName = windowName.replace(' ','');
	target = window.open(url, windowName, 'width='+width+',height='+height+',location=off,status=off,scrollbars='+scrollbars+',resizable='+resizable+',toolbar=no,status=yes');
	target.focus();
}

