/*
* Purpose: open html video page in customized new window
* call: loadwin("_private/member_pages/JoanVickers.html");
*
*/
 
function loadwin(url)
{
	var w = 1
	var h = 2
	
	if (screen.width > 900) 
	{ w = 900 }
	else
	{ w = screen.height }
	
	
	if (screen.height > 850)
	{ h = 850 }
	else
	{ h = screen.height }
	
	//document.write w;
	//document.write h;
	
	window.open(url, 'Test Window', 'width=1000,height=840,resizable=yes,scrollbars=yes'); //location.href=url; //old
} //end function loadwin  


// other
// document.write(password);
// alert("works");
