// JavaScript Document
function openPopUpWindows(_path, _title, _specs)
{
	myWindow=window.open(_path,_title,_specs);
	myWindow.focus();
}