<!--Source popup image -->

<html>
<script language = javascript>
function image_open(image_loc)
{
 var var_image = new Image();
 var_image.src = image_loc;
 width = var_image.width + 20;
 heigth = var_image.height +30;
 str_style= "\" width="+width+",height="+heigth+"\"";
 window.open(var_image.src,"myImage",str_style);
 
}
</script>
<body>
<img src="popup_image/mtv_dancer.gif" width=50 height=50 onclick="image_open('popup_image/mtv2001.jpg')">
</body>
</html>

<!-- end Source -->
