// JavaScript Document

function MM_openBrWindow(theURL,winName,features) 
{  	//v2.0
	window.open(theURL,winName,features);
}

function PopupPic(sPicURL)
{
	//window.open( "/cable_and_harness_testing/popup.html?"+sPicURL, "",  
	//"resizable=1,HEIGHT=200,WIDTH=300");
	window.open( "/cable_and_harness_testing/popup.php?"+sPicURL, "poppis",
	"resizable=1,HEIGHT=200,WIDTH=200");
}

function skift(obj)
{
	if (obj.className=='ikkeklikket') 
	{
		obj.className = 'klikket';
		document.getElementById(obj.id + '.ipt').focus();
	}
	else if (obj.className=='klikket') 
	{
		obj.className = 'ikkeklikket';
	}
}

function checkDelete() 
{
 	var value = confirm("Do you really want to delete this file?");
	if (value == true) 
	{
		return true;
	} 
	else 
	{
		return false;
	}
}