function RemoveWp(str)
	{
		rstr=""
		for (i = 0;i < str.length;i++ )
		{
			if(str.charAt(i)!=" ") rstr = rstr + str.charAt(i);
		}
		return rstr;
	}

function js_callpage(htmlurl,w,h){
var focusok;
var newwin=window.open(htmlurl,"newWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=2,left=2,width=" + w +",height=" + h );
	if(focusok){
		newwin.location=htmlurl
		newwin.focus();
	}
return false;
}

var newWindow = null
function windowOpener(loadpos)
{       
        if (! newWindow || newWindow.closed)
        {
        newWindow = window.open(loadpos,"surveywin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=2,left=2,width=600,height=310");
        }else
        {
                newWindow.focus();
        }
}

var newWindow = null
function js_callpages(loadpos)
{       
        if (! newWindow || newWindow.closed)
        {
        newWindow = window.open(loadpos,"surveywin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=2,left=2,width=600,height=310");
        }else
        {
                newWindow.focus();
        }
}