//opens new window-----------------------------------------------------------------------------------------------
function openWindow(str_URL, str_WindowName, int_Width, int_Height, str_TopPos, str_LeftPos, str_Scrollbars, str_Status, str_Resizable)
{
//	alert("your screen is: "+ top.outerheight +" high, and: "+ top.outerwidth +" wide!!");

	var str_Features = "width=" + int_Width;
	str_Features = str_Features + ", height=" + int_Height; 
	str_Features = str_Features + ", resizable=" + str_Resizable;
	str_Features = str_Features + ", scrollbars=" + str_Scrollbars;
	str_Features = str_Features + ", menubar=no";
	str_Features = str_Features + ", toolbar=no";			 
	str_Features = str_Features + ", directories=no";
	str_Features = str_Features + ", location=no";			
	str_Features = str_Features + ", status=" + str_Status;			
	str_Features = str_Features + ", top=" + str_TopPos;
	str_Features = str_Features + ", left=" + str_LeftPos;
				
	obj_Window = window.open(str_URL, str_WindowName, str_Features);
	obj_Window.focus();
	obj_Window.opener = self;
	return obj_Window;
}
//---------------------------------------------------------------------------------------------------------------

