//PO: 05/11/2005
//
//this function posts the form "session" to the page specified by "whichPage".
//it's purpose is to post SID to another page
//
//the form "session" must be defined in the page that calls it
//and it is called as in the following example:
//
//<a href="http://www.yahoo.com" onClick="postIt(this);return false;">Yahoo</a>
// 
//the link above would post the form "session" to yahoo

function postIt(whichPage){
	document.session.action = whichPage;
	document.session.submit();
}

