// Frame.js

document.domain="exelixis.com";

function transmitValue() {
	if ( typeof parent.transmitValue == 'function' )
		parent.transmitValue();
}
/*
if ( window.addEventListener )
	window.addEventListener("load", transmitValue, false);	// DOM support

else if ( window.attachEvent )
	window.attachEvent("onload", transmitValue);	// IE Support

else if ( document.getElementById )
	window.onload = transmitValue

*/
