	
	
	function showWomanPreview(imagePath,inputObj)
	{
		document.images.pre_woman.src=imagePath;
		
		//_imagePath = imagePath.replace(".jpg","-big.jpg");
		_imagePath = imagePath;
		
		var woman_img = new Image(); 
		woman_img.src = _imagePath; 
	}
	
	function showManPreview(imagePath,inputObj)
	{
		document.images.pre_man.src=imagePath;
		
		//_imagePath = imagePath.replace(".jpg","-big.jpg");
		_imagePath = imagePath;
		
		var man_img = new Image(); 
		man_img.src = _imagePath; 
	}