Can I record a page as two manual pageviews in Google Analytics?

I’m trying to have two manual pageviews recorder in Google Analytics when a certain page is loaded.

I need to have it say both:

[‘_trackPageview’, “/funded”]

and

[‘_trackPageview’, “/reg-complete”]

in this block

var _gaq = _gaq || ;
_gaq.push(
[‘_setAccount’, ‘UA-1234567-1’],
[‘_setDomainName’, ‘.domain.com’],

['_trackPageview', "/reg-complete"],
    ['_trackPageview', "/funded"] // Can I add this just like this and have it record both?

);