// target blank window

window.onload=autoPOP;

function autoPOP()
{
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		if (x[i].getAttribute('className') == 'external' || x[i].getAttribute('class') == 'external' ||x[i].getAttribute('className') == 'external_01A' || x[i].getAttribute('class') == 'external_01A' ||x[i].getAttribute('className') == 'external_01B' || x[i].getAttribute('class') == 'external_01B')
		{
			x[i].target = '_blank';
		}
	}
};





// openwidow

var openWin = function(obj,w,h){
	if(navigator.userAgent.indexOf("MSIE") != -1){
		return true;
	}else{
		window.open(obj.href,'','scrollbars=yes,location=yes,resizable=yes,width=' + w + ',height=' + h);
		return false;
	}
}

