function randnum()
{
	var random_number=Math.floor(Math.random()*(4))
	return (random_number)
}
	
	
function quoteit(num) 
{
var random_quote = new Array()


random_quote[0] = "QualMark has worked with HALT & HASS Consulting on several occasions with great success. HALT & HASS Consulting has provided valuable training, program consulting, and practical effective HALT and HASS methodology best practices at several of our customers in the Asia Pacific region."


random_quote[1] = "HALT and HASS Consulting conducted some specific HALT testing for NEC Australia. We were very satisfied with the work done by HHCNZ. The initial quote was quickly prepared, alongside a very well-presented testing plan and work schedule.<p></p>The skills, knowledge, and hard work of the HHCNZ staff resulted in the discovery of some non-evident NEC product weaknesses. HHCNZ's staff possess self-conviction and professionalism, and this was demonstrated in their timely completion of the work. Also, the presentation and quality of the final test report was great."


random_quote[2] = "There's no doubt about it, Ken and Donovan at HALT & HASS Consulting know their onions; not just within the field of accelerated stress testing but over a range of peripheral subjects. <p></p>It is so refreshing to be guided through a new procedure by someone who is more interested in achieving a great outcome than demonstrating their prowess, or hiding any gaps in their understanding. The benefit that two such experienced engineers can bring to the product improvement process is huge."

random_quote[3] = "Ken and Donovan have been a great help to us in identifying potential failures in our new product through HALT so we are taking correction action before entering the market.<p></p> Their presentations and knowledge in HALT and HASS has convinced our Engineers to utilise this as an effective tool to reduce field failures."


return (random_quote[num])

}



function quotecomp(num)
{
var quote_comp = new Array()
quote_comp[0] = "<strong>Qualmark Corporation</strong><p></p>"
quote_comp[1] = "<strong>NEC Electronics </strong><p></p>"
quote_comp[2] = "<strong>Actronic Ltd</strong><p></p>"
quote_comp[3] = "<strong>Aucom Ltd</strong><p></p>"

return (quote_comp[num])
}


function quotelink(num)
{
var quote_link = new Array()
quote_link[0] = "http://www.qualmark.com"
quote_link[1] = "http://www.nec.com.au"
quote_link[2] = "http://www.actronic.co.nz"

return (quote_link[num])
}






