// JavaScript Document<script>
var newImg
var curHeight1,curWidth1;
function loadImg(src){
	newImg = new Image();
	newImg.src = src;
	newImg.style.display='none';
	document.body.appendChild(newImg)
}

function openImage(src,h,w)
{
	var k= window.open(src,'Awear_Clothes','width='+w+',height='+h+',resizable=0');
	k.focus();
}

	
