// JavaScript Document
function openTip(url)
{
	newWin = window.open(url, "tipWindow", "scrollbars, resizable, width=530, height=500" )
	newWin.focus();
}
function openSignup()
{
	newWin2 = window.open("signup.htm", "signupWindow", "scrollbars, resizable, width=540, height=260" )
	newWin2.focus();
}

function openCoaching()
{
	newWin2 = window.open("complementary_cs_form.htm", "CoachingWindow", "scrollbars, resizable, width=540, height=480" )
	newWin2.focus();
}