$(function() {
	$('a.open_win, a.open_win_img').click(function() {
		var w = 530;
		var h = 530;
		var target = $(this).attr('href');
		if($(this).hasClass('w800')) {
			w = 800;
		}
		if($(this).hasClass('w700')) {
			w = 700;
		}
		if($(this).hasClass('h800')) {
			h = 800;
		}
		if($(this).hasClass('h700')) {
			h = 700;
		}
		
		MM_openBrWindow(target,'','scrollbars=yes,resizable=yes,width='+w+',height='+h);
		return false;
	});
});

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
