/* -----------------------------------------------
javascript file Intelligence.
FileName:default.css
----------------------------------------------- */

/**********************************************************
* externallink
*/

function blankWindow(){
	if (!document.getElementsByTagName)
		return;

	var anchors = document.getElementsByTagName('a');

	for (var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];

	if (anchor.getAttribute('href') && anchor.getAttribute('rel') == 'external')
		anchor.target = 'canon';
	}
}

/**********************************************************
* full window open
*/

function fullWin() {
	fullWindow=window.open('','canon','location=no,scrollbars=yes,resizable=no,menubar=no,toolbar=no,status=no,directories=no');
	fullWindow.moveTo(0,0);
	fullWindow.resizeTo(screen.availWidth,screen.availHeight);
	fullWindow.focus();
}

