/*######################################################################*/
/*POPUP1 - FIXED CENTER*/
function popup_ajax(file,width,onComplete){
 popup_html('<div style="text-align:center;padding:50px 0px 80px;"><img src="gfx/loading.gif" /></div>',width);
 jQuery('#popup-inner').load(file,'',onComplete);
 }

function popup_html(content,width){
 var width = (typeof(width)=='undefined' ? 600 : width ); 
 if(typeof(content)=='string'){innerhtml=content;}else if(isElement(content)){innerhtml=content.innerHTML;}
 
 if(jQuery('#popup').size()>0)jQuery('#popup').remove();//ALLOW ONLY ONE POPUP AT A TIME
 
 html = ''
 +'<div id="popup" class="popup"><div class="popup-bgnd"></div><table class="popup-table"><tr><td>'
 +'<div id="popup-inner" style="width:'+width+'px;">'
 +innerhtml
 +'</div></td></tr></table></div>';
 jQuery(document.body).prepend(html);
 
 if(jQuery.browser.msie&&jQuery.browser.version.substr(0,1)<7)jQuery(window).bind('scroll',ie6_popup_onscroll);
 }

function popup_close(){jQuery('#popup').remove();}

function ie6_popup_onscroll(event){
 if(jQuery('#popup').size()<1){jQuery(window).unbind('scroll',ie6_popup_onscroll);}
 else{document.getElementById('popup').style.top = document.body.parentElement.scrollTop;}
 }

