/*
	Popup Script
*/
// Popup Window
function showPopupWin(popup_id, width, height, x, y) {
	window.open('/popups/' + popup_id, 'popup_' + popup_id,
		'width=' + (width - 2) + 'px,height=' + (height + 28) + 'px,top=' + y + ',left=' + x + ', location=0');
}
function closePopupWin(popup_id, nomore) {
	if(nomore) $.cookie('popup_' + popup_id, 'yes', {expires: 1, path: '/'});
    self.close();
}
function closePopupWinAndMove(url) {
	opener.location.href = url;
	self.close();
}
// Popup Layer
function showPopupLayer(popup_id) {
	$('#popup_layer_' + popup_id).show();
}
function closePopupLayer(popup_id, nomore) {
	if(nomore) $.cookie('popup_' + popup_id, 'yes', {expires: 1, path: '/'});
	$('#popup_layer_' + popup_id).hide();
}