// JavaScript Document
//
	
function renderINDCFooter(){
//	document.write('Ipinapatupad sa AT&amp;T U-verse ang mga hangganan sa kinaroroonan at serbisyo.<a href="https://uverse1.att.com/un/launchAMSS.do?GUID=0FDB944C-9350-45A9-95C1-1E87A9DE08DE&target_action=serviceabilityCheck"> I-click dito </a>para malaman kung ikaw ay kwalipikado.<br />');
document.write('<A href="http://www.att.com/gen/privacy-policy?pid=2587">&copy; 2003 - 2009 AT&amp;T Intellectual Property.</a> Reserbado ang lahat ng mga karapatan. <br /><a target="_blank" href="http://www.att.com/privacy">Privacy Policy</a> | <a href="javascript:popup(\'https://uma.att.com/uma/RetrieveGeneralContent?CONTENTID=109&APPID=AMSS&FORMAT=POPUP&DMA=X&CUSTSUBTYPE=X\')">Terms of Service</a> | <a target="_blank" href="http://www.att.com/gen/general?pid=11561">Terms of Use</a>');
}
function renderUverseFooter(){
	document.write('Ipinapatupad  sa AT&amp;T U-verse ang mga hangganan sa kinaroroonan at serbisyo. <a href="https://uverse1.att.com/un/launchAMSS.do?GUID=0FDB944C-9350-45A9-95C1-1E87A9DE08DE&amp;target_action=serviceabilityCheck">I-click  dito</a> para malaman kung ikaw ay kwalipikado.<br /><a target="_blank" href="http://www.att.com/gen/privacy-policy?pid=2587">&copy; 2009 AT&amp;T Intellectual Property</a>. All rights reserved.<br/><a target="_blank" onclick="popup(this.href); return false" href="https://uma.att.com/assets/files/legal_disclaimer.html">AT&amp;T U-verse(SM) Offer Details</a> | <a target="_blank" href="http://www.att.com/privacy">Privacy Policy</a> | <a href="javascript:popup(\'https://uma.att.com/uma/RetrieveGeneralContent?CONTENTID=109&APPID=AMSS&FORMAT=POPUP&DMA=X&CUSTSUBTYPE=X\')">Terms of Service</a> | <a target="_blank" href="http://www.att.com/gen/general?pid=11561">Terms of Use</a>');
}


function popup(URL) {
	window.open(URL,'SBC', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=400');
} 

function winResize(w, h) {
	window.resizeTo(w, h);
	self.focus();
}

function popwindow(URL, w, h) {
	var tp = 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width='+w+',height='+h ;
	window.open(URL,'ATT',tp);
}  


// Added by rc6984 on 5.15.09; code is from R10 site map created by FET

function popupHandler(){
	$(".popup").click(function(){
		var relDim = $(this).attr('rel');
		var dim = relDim.split("x");
		if(relDim == "" || relDim == null){
			var w = "800";
			var h = "600";
		}
		else{
			var w = dim[0];
			var h = dim[1];
		}		
		window.open(this.href,'Popup','toolbar=0,scrollbars=0,location=0,menubar=0,resizable=1,width='+w+',height='+h+'');
		return false;
	});
}