function getBoundsObject(tag){
var techbug = new Object();
if(tag !=null && tag != undefined ){
if(tag.getBoundingClientRect){ //IE, FF3
//alert('1');
var rect = tag.getBoundingClientRect();
techbug.left = rect.left + (document.documentElement.scrollLeft || document.body.scrollLeft);
techbug.top = rect.top + (document.documentElement.scrollTop || document.body.scrollTop);
techbug.width = rect.right - rect.left;
techbug.height = rect.bottom - rect.top +1; // +1 = Moz¿Í ¸ÂÃã
} else if (document.getBoxObjectFor) { // gecko ¿£Áø ±â¹Ý FF3Á¦¿Ü
//alert('2');
var box = document.getBoxObjectFor(tag);
techbug.left = box.x;
techbug.top = box.y;
techbug.width = box.width;
techbug.height = box.height;
}else { //alert('3');
techbug.left = tag.offsetLeft;
techbug.top = tag.offsetTop;
techbug.width = tag.offsetWidth;
techbug.height = tag.offsetHeight + 3; // +1 = Moz¿Í ¸ÂÃã
var parent = tag.offsetParent;
if (parent != tag) {
while (parent) {
techbug.left += parent.offsetLeft;
techbug.top += parent.offsetTop;
parent = parent.offsetParent;
}
}
// ¿ÀÆä¶ó¿Í »çÆÄ¸®ÀÇ 'absolute' postionÀÇ °æ¿ì bodyÀÇ offsetTopÀ» À߸ø °è»ê º¸Á¤
var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('opera') != -1 || ( ua.indexOf('safari') != -1 && getStyle(tag, 'position') == 'absolute' )) {
techbug.top -= document.body.offsetTop;
}
}
return techbug;
}
}
function sub_menu_view(no, mode){
if(mode=='on'){
var tag = document.getElementById('gameangelmenu'+no);
var btn_posiction = getBoundsObject(tag);
if (document.all){
document.getElementById('gameangel_submenu'+no).style.top = btn_posiction.top+12;
document.getElementById('gameangel_submenu'+no).style.left = btn_posiction.left;
} else {
document.getElementById('gameangel_submenu'+no).style.top = (btn_posiction.top+12)+'px';
document.getElementById('gameangel_submenu'+no).style.left = btn_posiction.left+'px';
}
document.getElementById('gameangel_submenu'+no).style.display = '';
}else{
document.getElementById('gameangel_submenu'+no).style.display = 'none';
}
}
document.write('
');
window.open('http://fg.gameangel.com/System/channel/pigwing/popup_6.htm','event_board','width=510,height=579,left=0,top=0');