// Web Development by Happy Viper Integrated Design http://www.happyviper.com
$(document).ready(function(){
	//
	var w = window.name;
	var _href = 'http://www.atozmedia.com/webnew/#';
	var msg = '';
	closeAndUpdateParent = function (href){
		if (window.opener == null){
			window.name = 'atoz';
			window.location.href = _href+href;
		} else {
			window.opener.location.href = _href+href;
			window.close();
		}
	}
	if(w=='atozWin'){
		$('a').click(function(event){
			if($(this).attr('href').indexOf(_href) != -1){
				event.preventDefault();
				_url = $(this).attr('href').substring($(this).attr('href').indexOf('#')+1)
				closeAndUpdateParent(_url);
				
			}
		});
	}
});