<!--
$('.webcam').click( function() {
	//var windowwidth = 460;
	var windowwidth = 560;
	//var windowheight = 400;
	var windowheight = 500;
	var webcamattr = "width=" + windowwidth + ", height=" + windowheight;	
	window.open( $(this).attr('href'), 'webcam', webcamattr );
	return false;
});

$('.webcamstudio').click( function() {
	
	var w1 = $('#webcam1').width();
	var h1 = $('#webcam1').height();
	var w2 = $('#webcam2').width();
	
	var windowwidth = w1 + w2 + 70;
	var windowheight = h1 + 150;
	
	var webcamattr = "width=" + windowwidth + ", height=" + windowheight;
	
	window.open( $(this).attr('href'), 'webcamstudio', webcamattr );
	return false;
	
});


//-->



