// JavaScript Document
function showDiv(id){
	jQuery('#main_login_panel').show();
	jQuery('#login_box').show();
	if(id == 'deluxeDes')
		jQuery('#panelTitle').html('Deluxe Subscription Length');
	else
		jQuery('#panelTitle').html('Premium Subscription Length');
	jQuery('#panelContent').html(jQuery('#'+id).html());
}

function hideDiv(){
	jQuery('#main_login_panel').hide();
	jQuery('#login_box').hide();
}


function sendemail(url){
 isPostback=true;
 windowHandle = window.open(url, 'Sendemail', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizeable=0,scrollbars=1, width=684,height=510'); 
 windowHandle.moveTo(screen.width / 2 - 300, 200); 
 windowHandle.focus();	
}
