$(document).ready(function(){
$('#popup14').hide();
var height=$(document).height();
var width=$(document).width();
function popup14(wid, hei){
var T=116;
var L=((width/2)-484);
$('#pop_back14').css({
'width':width,
'height':height,
'position':'absolute',
'top':'0px',
'left':'0px',

'display':'none'
})
$('#popup14').css({
'width':wid,
'height':hei,
'position':'absolute',
'top':T,
'left':L,
'display':'none',
'padding-top':'164px',
'padding-right':'0px',
'border':'0px solid #D0D0D0',
'-moz-border-radius':'4px',
'-webkit-border-radius':'4px'
})	
$('#pop_back14').fadeIn();
$('#popup14').fadeIn();
}
function pop_close14(){
$('#pop_back14').fadeOut();
$('#popup14').fadeOut();

}
$('#close_btn14').click(function(){
pop_close14();				 
})
$('#btn14').click(function(){
popup14(800, 438, 3);						 
})
})

