/*====================================================================================================
//////////////////////////////////////////////////////////////////////////////////////////////////////

 Author : http://www.metaphase.co.jp/
 created: 2009/12/28

//////////////////////////////////////////////////////////////////////////////////////////////////////
====================================================================================================*/

window.onload = function (){
	var node_a = document.getElementsByTagName('a');
		for (var i in node_a) {
			if(node_a[i].className == 'popup'){
				node_a[i].onclick = function() {
					return winOpen(this.href, this.rel)
				};
			}
		}
} ;

function winOpen(url, rel) {
	var split = rel.split(',') ;
	if(split[0] == 'full'){
		var x = (screen.availWidth) / 1;
	} else {
		var x = split[0];
	}
	if(split[1] == 'full'){
		var y = (screen.availHeight) / 1;
	} else {
		var y = split[1];
	}

	window.open(url,'popup', 'width='+ x +',height='+ y +',fullscreen=1,left=0,top=0,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');

	return false;
};

