﻿// JScript File

function wmcmWindowOpen(url,name,features)
{
    wnd = window.open(url, name, features);
    wnd.focus();
    
}

function wmcmScrollPosition(oObject) 
{
	var posTop = 0, posLeft = 0;

	var oParent = oObject;
	
	while (oParent != null) 
	{
	 	posTop += oParent.offsetTop;
	 	oParent = oParent.offsetParent;
	}
	return(posTop);
}