а пжалста))
var layer = $('#layer'),
modal = $('#modal'),
modalContent = '<iframe src="http://site.ru"></iframe>',
wp = 0.5,// 50%
hp = 0.3,// 30%
w = window.outerWidth, //ширина окна
h = window.outerHeight,//высота окна
wWidth = w * wp, // ширина окна * 50%
wHeight = h * hp; // высота окна * 30%
$('.modal').click(function () {
layer.show();
modal.show().animate({
width: wWidth,
height: wHeight,
}, function () {
$(this).html(modalContent);
});
});
переменных наплодил для наглядности