function swapLinkStyle(id, hover)
{
	elem = document.getElementById(id);
	if (hover)
	{
		elem.style.color = '#EA2227';
		elem.style.backgroundColor = '#FFFFFF';
		elem.style.cursor = 'pointer';
	}
	else
	{
		elem.style.color = '#666666';
		elem.style.backgroundColor = 'Transparent';
		elem.style.cursor = 'default';
	}
}

function show_profile()
{
	jsw_showWindow(jsw_initializeContainer('jsw_container', "Student Profile :: " + document.frm_randomProfile.profile_name.value, 450, 600), baseUrl + '/student-profile/view/profile_id/' + document.frm_randomProfile.profile_id.value);

}


function show_article(title, link)
{
	jsw_showWindow(jsw_initializeContainer('jsw_container', title , 450, 600), link);
}



function  cancel_jsw()
{
	if (jsw_movingObject != null)
	{
		jsw_movingObject.style.cursor = 'default';
		jsw_movingObject = null;
	}
}
