// JavaScript Document
function opener(imageobject)
{
tempfile=imageobject.src;
temparr=tempfile.split("/");
new_file_name="";
for(counter=0;counter<temparr.length;counter++)
{
	if(counter==temparr.length-1)
	{
		new_file_name+="big/"
		
	}
	new_file_name+=(temparr[counter]);
	if(counter!=temparr.length-1)
	{
		new_file_name+="/";
	}
	
}
	//alert(new_file_name);
kost=window.open(new_file_name,"niraj","height=400,width=410");
kost.document.bgColor="black";
//kost.title="europeanironworks.com";
kost.moveTo(200,200);
kost.focus();



}